rename from libkdcraw5 and add provide/obsoletes [release 20.08.1-2mamba;Wed Sep 09 2020]
This commit is contained in:
parent
ddd15e15ce
commit
7f00e93005
240
libkdcraw.spec
240
libkdcraw.spec
@ -1,5 +1,5 @@
|
||||
Name: libkdcraw
|
||||
Version: 15.08.0
|
||||
Version: 20.08.1
|
||||
Release: 2mamba
|
||||
Summary: A C++ interface around LibRaw library used to decode RAW picture files
|
||||
Group: Graphical Desktop/Libraries/KDE
|
||||
@ -7,20 +7,20 @@ Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
||||
URL: http://www.kde.org
|
||||
Source: http://download.kde.org/stable/applications/%{version}/src/libkdcraw-%{version}.tar.xz
|
||||
Source: http://download.kde.org/stable/release-service/%{version}/src/libkdcraw-%{version}.tar.xz
|
||||
License: GPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: kdelibs-devel
|
||||
BuildRequires: ldconfig
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libqt4-devel
|
||||
BuildRequires: libqt5-devel
|
||||
BuildRequires: libraw-devel
|
||||
BuildRequires: libstdc++6-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRequires: cmake
|
||||
BuildRequires: libraw-devel >= 0.15
|
||||
Requires: kdelibs4
|
||||
Requires: kdebase-runtime
|
||||
Provides: libkdcraw5
|
||||
Obsoletes: libkdcraw5
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
@ -32,65 +32,227 @@ The library documentation is available on header files.
|
||||
Group: Development/Libraries
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Provides: libkdcraw5-devel
|
||||
Obsoletes: libkdcraw5-devel
|
||||
|
||||
%description devel
|
||||
KDE interface library for dcraw command line program to decode RAW picture files.
|
||||
This package contains static libraries and header files need for development.
|
||||
|
||||
%debug_package
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%cmake_kde4 -d build
|
||||
%cmake_kde5 -d build
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall -C build
|
||||
|
||||
install -d %{buildroot}%{_libdir}/pkgconfig
|
||||
mv %{buildroot}%{_kde4_libdir}/pkgconfig/*.pc \
|
||||
%{buildroot}%{_libdir}/pkgconfig/
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post
|
||||
/sbin/ldconfig
|
||||
touch --no-create %{_kde4_icondir}/hicolor &>/dev/null
|
||||
exit 0
|
||||
|
||||
%posttrans
|
||||
/sbin/ldconfig
|
||||
gtk-update-icon-cache %{_kde4_icondir}/hicolor &>/dev/null
|
||||
exit 0
|
||||
|
||||
%postun
|
||||
/sbin/ldconfig
|
||||
if [ $1 -eq 0 ]; then
|
||||
touch --no-create %{_kde4_icondir}/hicolor &>/dev/null
|
||||
gtk-update-icon-cache %{_kde4_icondir}/hicolor &>/dev/null
|
||||
fi
|
||||
exit 0
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_kde4_datadir}/libkdcraw/profiles/*.icm
|
||||
%{_kde4_datadir}/libkdcraw/profiles/*.icc
|
||||
%{_kde4_icondir}/hicolor/*/apps/kdcraw.png
|
||||
%{_kde4_libdir}/libkdcraw.so.*
|
||||
%{_kde5_libdir}/libKF5KDcraw.so.*
|
||||
%doc AUTHORS COPYING COPYING.LIB
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_kde4_libdir}/libkdcraw.so
|
||||
%{_kde4_includedir}/libkdcraw/*.h
|
||||
%{_libdir}/pkgconfig/libkdcraw.pc
|
||||
%doc ChangeLog NEWS README TODO
|
||||
%{_kde5_libdir}/libKF5KDcraw.so
|
||||
%{_kde5_includedir}/*.h
|
||||
%dir %{_kde5_includedir}/KDCRAW
|
||||
%dir %{_kde5_includedir}/KDCRAW/KDCRAW
|
||||
%{_kde5_includedir}/KDCRAW/KDCRAW/*
|
||||
%dir %{_kde5_includedir}/KDCRAW/kdcraw
|
||||
%{_kde5_includedir}/KDCRAW/kdcraw/*.h
|
||||
%dir %{_kde5_libdir}/cmake/KF5KDcraw
|
||||
%{_kde5_libdir}/cmake/KF5KDcraw/KF5KDcraw*.cmake
|
||||
%doc README TODO
|
||||
|
||||
%changelog
|
||||
* Fri Jan 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 15.08.0-2mamba
|
||||
- don't provide and obsolete libkdcraw5
|
||||
* Wed Sep 09 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 20.08.1-2mamba
|
||||
- rename from libkdcraw5 and add provide/obsoletes
|
||||
|
||||
* Fri Sep 04 2020 Automatic Build System <autodist@mambasoft.it> 20.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 15 2020 Automatic Build System <autodist@mambasoft.it> 20.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 10 2020 Automatic Build System <autodist@mambasoft.it> 20.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 12 2020 Automatic Build System <autodist@mambasoft.it> 20.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 16 2020 Automatic Build System <autodist@mambasoft.it> 20.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 24 2020 Automatic Build System <autodist@mambasoft.it> 20.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Mar 05 2020 Automatic Build System <autodist@mambasoft.it> 19.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 07 2020 Automatic Build System <autodist@mambasoft.it> 19.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 10 2020 Automatic Build System <autodist@mambasoft.it> 19.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Dec 30 2019 Automatic Build System <autodist@mambasoft.it> 19.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 08 2019 Automatic Build System <autodist@mambasoft.it> 19.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 11 2019 Automatic Build System <autodist@mambasoft.it> 19.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Sep 10 2019 Automatic Build System <autodist@mambasoft.it> 19.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Aug 29 2019 Automatic Build System <autodist@mambasoft.it> 19.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 12 2019 Automatic Build System <autodist@mambasoft.it> 19.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 07 2019 Automatic Build System <autodist@mambasoft.it> 19.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat May 11 2019 Automatic Build System <autodist@mambasoft.it> 19.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Apr 19 2019 Automatic Build System <autodist@mambasoft.it> 19.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Mar 07 2019 Automatic Build System <autodist@mambasoft.it> 18.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Feb 09 2019 Automatic Build System <autodist@mambasoft.it> 18.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 11 2019 Automatic Build System <autodist@mambasoft.it> 18.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Dec 15 2018 Automatic Build System <autodist@mambasoft.it> 18.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Mon Nov 12 2018 Automatic Build System <autodist@mambasoft.it> 18.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 12 2018 Automatic Build System <autodist@mambasoft.it> 18.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 07 2018 Automatic Build System <autodist@mambasoft.it> 18.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sat Aug 18 2018 Automatic Build System <autodist@mambasoft.it> 18.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 13 2018 Automatic Build System <autodist@mambasoft.it> 18.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jun 08 2018 Automatic Build System <autodist@mambasoft.it> 18.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu May 10 2018 Automatic Build System <autodist@mambasoft.it> 18.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Apr 22 2018 Automatic Build System <autodist@mambasoft.it> 18.04.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 09 2018 Automatic Build System <autodist@mambasoft.it> 17.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 09 2018 Automatic Build System <autodist@mambasoft.it> 17.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Jan 11 2018 Automatic Build System <autodist@mambasoft.it> 17.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Dec 21 2017 Automatic Build System <autodist@mambasoft.it> 17.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 10 2017 Automatic Build System <autodist@mambasoft.it> 17.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Thu Oct 12 2017 Automatic Build System <autodist@mambasoft.it> 17.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 08 2017 Automatic Build System <autodist@mambasoft.it> 17.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Aug 22 2017 Automatic Build System <autodist@mambasoft.it> 17.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 06 2017 Automatic Build System <autodist@mambasoft.it> 17.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jul 07 2017 Automatic Build System <autodist@mambasoft.it> 17.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 10 2017 Automatic Build System <autodist@mambasoft.it> 16.12.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Feb 10 2017 Automatic Build System <autodist@mambasoft.it> 16.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 13 2017 Automatic Build System <autodist@mambasoft.it> 16.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Dec 18 2016 Automatic Build System <autodist@mambasoft.it> 16.12.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Nov 11 2016 Automatic Build System <autodist@mambasoft.it> 16.08.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Oct 14 2016 Automatic Build System <autodist@mambasoft.it> 16.08.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Sep 09 2016 Automatic Build System <autodist@mambasoft.it> 16.08.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Aug 26 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 16.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jul 13 2016 Automatic Build System <autodist@mambasoft.it> 16.04.3-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jun 15 2016 Automatic Build System <autodist@mambasoft.it> 16.04.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri May 20 2016 Automatic Build System <autodist@mambasoft.it> 16.04.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Feb 16 2016 Automatic Build System <autodist@mambasoft.it> 15.12.2-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 29 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 15.12.1-7mamba
|
||||
- legacy package
|
||||
|
||||
* Wed Jan 27 2016 Automatic Build System <autodist@mambasoft.it> 15.12.1-6mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jan 27 2016 Automatic Build System <autodist@mambasoft.it> 15.12.1-5mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Wed Jan 27 2016 Automatic Build System <autodist@mambasoft.it> 15.12.1-4mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 26 2016 Automatic Build System <autodist@mambasoft.it> 15.12.1-3mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 26 2016 Automatic Build System <autodist@mambasoft.it> 15.12.1-2mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Tue Jan 26 2016 Automatic Build System <autodist@mambasoft.it> 15.12.1-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Sun Aug 23 2015 Automatic Build System <autodist@mambasoft.it> 15.08.0-1mamba
|
||||
- automatic version update by autodist
|
||||
|
Loading…
Reference in New Issue
Block a user