standardize the specfile add some missing build requirements [release 5.9.0-2mamba;Wed Apr 29 2015]

This commit is contained in:
Davide Madrisan 2024-01-06 02:54:20 +01:00
parent e792d60bea
commit 4f31664140
2 changed files with 39 additions and 30 deletions

View File

@ -1,4 +1,6 @@
# kservice # kservice
KService provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. KService provides a plugin framework for handling desktop services.
Services can be applications or libraries.
They can be bound to MIME types or handled by application specific code.

View File

@ -1,7 +1,8 @@
%define majver %(echo %version | cut -d. -f1-2) %define majver %(echo %version | cut -d. -f1-2)
Name: kservice Name: kservice
Version: 5.9.0 Version: 5.9.0
Release: 1mamba Release: 2mamba
Summary: Plugin framework for desktop services Summary: Plugin framework for desktop services
Group: System/Libraries Group: System/Libraries
Vendor: openmamba Vendor: openmamba
@ -22,11 +23,25 @@ BuildRequires: libqt5-devel
BuildRequires: libstdc++6-devel BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END ## AUTOBUILDREQ-END
BuildRequires: cmake BuildRequires: cmake
BuildRequires: extra-cmake-modules
BuildRequires: rpm-macros-kde5
BuildRequires: libQt5Core
BuildRequires: libQt5DBus
BuildRequires: libQt5Xml
BuildRequires: libkconfig-devel
BuildRequires: libkcoreaddons-devel
BuildRequires: libkdbusaddons-devel
BuildRequires: libki18n-devel
BuildRequires: kdoctools-devel
BuildRequires: gettext
BuildRequires: python
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
KService provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. KService provides a plugin framework for handling desktop services.
Services can be applications or libraries.
They can be bound to MIME types or handled by application specific code.
%package -n lib%{name} %package -n lib%{name}
Group: System/Libraries Group: System/Libraries
@ -43,22 +58,23 @@ Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
%description -n lib%{name}-devel %description -n lib%{name}-devel
This package contains libraries and header files for developing applications that use %{name}. This package contains libraries and header files for developing applications that use %{name}.
%debug_package %debug_package
%prep %prep
%setup -q %setup -q
%build %build
%cmake -d build %cmake_kde5 -d build
%make %make
%install %install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build %makeinstall -C build
mv %{buildroot}%{_sysconfdir}/xdg/menus/applications.menu %{buildroot}%{_sysconfdir}/xdg/menus/applications-kf5.menu mv %{buildroot}%{_sysconfdir}/xdg/menus/applications.menu \
%find_lang kservice5 %{buildroot}%{_sysconfdir}/xdg/menus/applications-kf5.menu
%find_lang %{name}5_qt --with-qt --all-name --with-man || touch %{name}5_qt.lang
%clean %clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -66,42 +82,33 @@ mv %{buildroot}%{_sysconfdir}/xdg/menus/applications.menu %{buildroot}%{_sysconf
%post -n lib%{name} -p /sbin/ldconfig %post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig %postun -n lib%{name} -p /sbin/ldconfig
%files -f kservice5.lang %files -f %{name}5_qt.lang
%defattr(-,root,root) %defattr(-,root,root)
%{_kde5_bindir}/kbuildsycoca5
%{_kde5_datadir}/kservicetypes5/*.desktop
%{_sysconfdir}/xdg/menus/applications-kf5.menu %{_sysconfdir}/xdg/menus/applications-kf5.menu
%{_bindir}/kbuildsycoca5 %{_mandir}/man8/desktoptojson.*
%{_datadir}/kservicetypes5/application.desktop %{_mandir}/man8/kbuildsycoca5.*
%{_datadir}/kservicetypes5/kplugininfo.desktop
%{_mandir}/man8/desktoptojson.8*
%{_mandir}/man8/kbuildsycoca5.8*
%{_mandir}/it/man8/kbuildsycoca5.8*
%{_mandir}/nl/man8/desktoptojson.8*
%{_mandir}/nl/man8/kbuildsycoca5.8*
%{_mandir}/pt_BR/man8/desktoptojson.8*
%{_mandir}/pt_BR/man8/kbuildsycoca5.8*
%{_mandir}/sv/man8/desktoptojson.8*
%{_mandir}/sv/man8/kbuildsycoca5.8*
%{_mandir}/uk/man8/desktoptojson.8*
%{_mandir}/uk/man8/kbuildsycoca5.8*
%doc COPYING %doc COPYING
%files -n lib%{name} %files -n lib%{name}
%defattr(-,root,root) %defattr(-,root,root)
%{_libdir}/libKF5Service.so.* %{_kde5_libdir}/libKF5Service.so.*
%doc COPYING.LIB %doc COPYING.LIB
%files -n lib%{name}-devel %files -n lib%{name}-devel
%defattr(-,root,root) %defattr(-,root,root)
%dir %{_includedir}/KF5/KService %{_kde5_includedir}/KService
%{_includedir}/KF5/KService/* %{_kde5_includedir}/kservice_version.h
%{_includedir}/KF5/kservice_version.h %{_kde5_libdir}/cmake/KF5Service
%dir %{_libdir}/cmake/KF5Service %{_kde5_libdir}/libKF5Service.so
%{_libdir}/cmake/KF5Service/KF5Service*.cmake %{_kde5_mkspecsdir}/qt_KService.pri
%{_libdir}/libKF5Service.so
/usr/mkspecs/modules/qt_KService.pri
%doc README.md %doc README.md
%changelog %changelog
* Wed Apr 29 2015 Davide Madrisan <davide.madrisan@gmail.com> 5.9.0-2mamba
- standardize the specfile add some missing build requirements
* Wed Apr 15 2015 Automatic Build System <autodist@mambasoft.it> 5.9.0-1mamba * Wed Apr 15 2015 Automatic Build System <autodist@mambasoft.it> 5.9.0-1mamba
- automatic version update by autodist - automatic version update by autodist