From d7ab1fa7a9514ccaea586990051026341a2b5074 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 02:57:03 +0100 Subject: [PATCH] package created using the webbuild interface [release 17.12.0-1mamba;Sat Jan 06 2018] --- README.md | 2 ++ ksmtp.spec | 99 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 ksmtp.spec diff --git a/README.md b/README.md index 581093a..57f8362 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ksmtp +KDE Frameworks 5 SMTP component. + diff --git a/ksmtp.spec b/ksmtp.spec new file mode 100644 index 0000000..bd52e5d --- /dev/null +++ b/ksmtp.spec @@ -0,0 +1,99 @@ +%define majver %(echo %version | cut -d. -f1-2) + +Name: ksmtp +Version: 17.12.0 +Release: 1mamba +Summary: KDE Frameworks 5 SMTP component +Group: Graphical Desktop/Applications/Internet +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.kde.org +Source: https://download.kde.org/stable/applications/%{version}/src/ksmtp-%{version}.tar.xz +# Source: http://download.kde.org/stable/frameworks/%{majver}/...-%{version}.tar.xz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libkconfig-devel +BuildRequires: libkcoreaddons-devel +BuildRequires: libki18n-devel +BuildRequires: libkio-devel +BuildRequires: libkmime-devel +BuildRequires: libkservice-devel +BuildRequires: libqt5-devel +BuildRequires: libsasl2-devel +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRequires: rpm-macros-kde5 +BuildRequires: extra-cmake-modules +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +KDE Frameworks 5 SMTP component. + +%package -n lib%{name} +Group: System/Libraries +Summary: Shared libraries for %{name} + +%description -n lib%{name} +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q + +%build +%cmake_kde5 -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%find_lang %{name}5_qt --with-qt --with-man --all-name || touch %{name}5_qt.lang + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} +/sbin/ldconfig +exit 0 + +%postun -n lib%{name} +/sbin/ldconfig +exit 0 + +%files -n lib%{name} -f %{name}5_qt.lang +%defattr(-,root,root) +%{_sysconfdir}/xdg/ksmtp.categories +%{_libdir}/libKPimSMTP.so.* +%doc COPYING.LIB + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/KPim/KSMTP +%dir %{_includedir}/KPim/KSMTP/KSMTP +%{_includedir}/KPim/KSMTP/KSMTP/* +%dir %{_includedir}/KPim/KSMTP/ksmtp +%{_includedir}/KPim/KSMTP/ksmtp/* +%{_includedir}/KPim/ksmtp_version.h +%dir %{_libdir}/cmake/KPimSMTP +%{_libdir}/cmake/KPimSMTP/KPimSMTP*.cmake +%{_libdir}/libKPimSMTP.so +%{_kde5_mkspecsdir}/qt_KSMTP.pri + +%changelog +* Sat Jan 06 2018 Silvan Calarco 17.12.0-1mamba +- package created using the webbuild interface