standardize the specfile [release 5.9.0-4mamba;Sat Apr 25 2015]

This commit is contained in:
Davide Madrisan 2024-01-06 00:47:34 +01:00
parent 51c36db4fd
commit a199892305
2 changed files with 22 additions and 27 deletions

View File

@ -1,7 +1,5 @@
# kcodecs # kcodecs
KCodecs provide a collection of methods to manipulate strings using various encodings. It supports: KCodecs provide a collection of methods to manipulate strings using various encodings.
* base64 It supports base64, uu, and quoted-printable.
* uu
* quoted-printable

View File

@ -1,7 +1,8 @@
%define majver %(echo %version | cut -d. -f1-2) %define majver %(echo %version | cut -d. -f1-2)
Name: kcodecs Name: kcodecs
Version: 5.9.0 Version: 5.9.0
Release: 3mamba Release: 4mamba
Summary: A collection of methods to manipulate strings using various encodings Summary: A collection of methods to manipulate strings using various encodings
Group: System/Libraries Group: System/Libraries
Vendor: openmamba Vendor: openmamba
@ -9,7 +10,7 @@ Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: GPL URL: GPL
Source: http://download.kde.org/stable/frameworks/%{majver}/kcodecs-%{version}.tar.xz Source: http://download.kde.org/stable/frameworks/%{majver}/kcodecs-%{version}.tar.xz
License: GPL License: GPL, LGPL
## AUTOBUILDREQ-BEGIN ## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel BuildRequires: glibc-devel
BuildRequires: libgcc BuildRequires: libgcc
@ -17,13 +18,14 @@ 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
BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
KCodecs provide a collection of methods to manipulate strings using various encodings. It supports: KCodecs provide a collection of methods to manipulate strings using various encodings.
* base64 It supports base64, uu, and quoted-printable.
* uu
* quoted-printable
%package -n lib%{name} %package -n lib%{name}
Group: System/Libraries Group: System/Libraries
@ -46,19 +48,14 @@ This package contains libraries and header files for developing applications tha
%setup -q %setup -q
%build %build
%cmake -d build \ %cmake_kde5 -d build
-DCMAKE_BUILD_TYPE=Release \
-DLIB_INSTALL_DIR=%{_lib} \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
-DBUILD_TESTING=OFF
%make %make
%install %install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build %makeinstall -C build
%find_lang %{name} || touch %{name}.lang %find_lang kcodecs5_qt --with-qt --all-name || touch kcodecs5_qt.lang
%clean %clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -66,24 +63,24 @@ This package contains libraries and header files for developing applications tha
%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 -n lib%{name} %files -n lib%{name} -f kcodecs5_qt.lang
%defattr(-,root,root) %defattr(-,root,root)
%{_libdir}/libKF5Codecs.so.* %{_kde5_libdir}/libKF5Codecs.so.*
%doc COPYING COPYING.LIB %doc COPYING COPYING.LIB
%files -n lib%{name}-devel %files -n lib%{name}-devel
%defattr(-,root,root) %defattr(-,root,root)
%{_includedir}/KF5/kcodecs_version.h %{_kde5_includedir}/kcodecs_version.h
%dir %{_includedir}/KF5/KCodecs %{_kde5_includedir}/KCodecs
%{_includedir}/KF5/KCodecs/* %{_kde5_libdir}/cmake/KF5Codecs
%dir %{_libdir}/cmake/KF5Codecs %{_kde5_libdir}/libKF5Codecs.so
%{_libdir}/cmake/KF5Codecs/KF5Codecs*.cmake %{_kde5_mkspecsdir}/qt_KCodecs.pri
%{_libdir}/libKF5Codecs.so
%{_libdir}/qt5/mkspecs/modules/qt_KCodecs.pri
%{_datadir}/locale/*/LC_MESSAGES/kcodecs5_qt.qm
%doc README.md %doc README.md
%changelog %changelog
* Sat Apr 25 2015 Davide Madrisan <davide.madrisan@gmail.com> 5.9.0-4mamba
- standardize the specfile
* Sat Apr 11 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.9.0-3mamba * Sat Apr 11 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.9.0-3mamba
- automatic version update by autodist - automatic version update by autodist