New upstream release
This commit is contained in:
parent
ce12da0703
commit
a07038dfd0
1
.gitignore
vendored
1
.gitignore
vendored
@ -40,3 +40,4 @@ PackageKit-0.6.7.tar.bz2
|
||||
/PackageKit-0.9.3.tar.xz
|
||||
/PackageKit-0.9.4.tar.xz
|
||||
/PackageKit-0.9.5.tar.xz
|
||||
/PackageKit-1.0.0.tar.xz
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
Summary: Package management service
|
||||
Name: PackageKit
|
||||
Version: 0.9.5
|
||||
Version: 1.0.0
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+ and LGPLv2+
|
||||
URL: http://www.freedesktop.org/software/PackageKit/
|
||||
@ -75,6 +75,7 @@ Obsoletes: PackageKit-zif < 0.8.13-2
|
||||
# components now built-in
|
||||
Obsoletes: PackageKit-debug-install < 0.9.1
|
||||
Obsoletes: PackageKit-hawkey < 0.9.1
|
||||
Obsoletes: PackageKit-backend-devel < 0.9.6
|
||||
|
||||
# Udev no longer provides this functionality
|
||||
Obsoletes: PackageKit-device-rebind < 0.8.13-2
|
||||
@ -123,15 +124,6 @@ Provides: PackageKit-docs = %{version}-%{release}
|
||||
%description glib-devel
|
||||
GLib headers and libraries for PackageKit.
|
||||
|
||||
%package backend-devel
|
||||
Summary: Headers to compile out of tree PackageKit backends
|
||||
# explicit dep: packagekit-plugin.pc links with -lpackagekit-glib2
|
||||
# but doesn't refer to packagekit-glib2.pc
|
||||
Requires: %{name}-glib-devel%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description backend-devel
|
||||
Headers to compile out of tree PackageKit backends.
|
||||
|
||||
%package browser-plugin
|
||||
Summary: Browser Plugin for PackageKit
|
||||
Requires: gtk2
|
||||
@ -187,7 +179,6 @@ using PackageKit.
|
||||
%else
|
||||
--disable-bash-completion \
|
||||
%endif
|
||||
--with-default-backend=auto \
|
||||
--with-python-package-dir=%{python3_sitearch} \
|
||||
--disable-local \
|
||||
--disable-strict \
|
||||
@ -201,7 +192,6 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/libpackagekit*.la
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/packagekit-backend/*.la
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/packagekit-plugins-2/*.la
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins/packagekit-plugin.la
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/modules/*.la
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-3.0/modules/*.la
|
||||
@ -245,10 +235,6 @@ popd > /dev/null
|
||||
%dir %{_datadir}/PackageKit
|
||||
%dir %{_datadir}/PackageKit/helpers
|
||||
%dir %{_sysconfdir}/PackageKit
|
||||
%dir %{_sysconfdir}/PackageKit/events
|
||||
%dir %{_sysconfdir}/PackageKit/events/post-transaction.d
|
||||
%dir %{_sysconfdir}/PackageKit/events/pre-transaction.d
|
||||
%{_sysconfdir}/PackageKit/events/*.d/README
|
||||
%dir %{_localstatedir}/lib/PackageKit
|
||||
%dir %{python3_sitearch}/packagekit
|
||||
%dir %{_localstatedir}/cache/PackageKit
|
||||
@ -268,7 +254,6 @@ popd > /dev/null
|
||||
%{_datadir}/PackageKit/helpers/test_spawn/*
|
||||
%{_datadir}/man/man1/pkcon.1.gz
|
||||
%{_datadir}/man/man1/pkmon.1.gz
|
||||
%{_datadir}/man/man1/pk-debuginfo-install.1.gz
|
||||
%{_datadir}/polkit-1/actions/*.policy
|
||||
%{_datadir}/polkit-1/rules.d/*
|
||||
%{_datadir}/PackageKit/pk-upgrade-distro.sh
|
||||
@ -276,15 +261,11 @@ popd > /dev/null
|
||||
%{_libexecdir}/packagekit-direct
|
||||
%{_bindir}/pkmon
|
||||
%{_bindir}/pkcon
|
||||
%{_bindir}/pk-debuginfo-install
|
||||
%exclude %{_libdir}/libpackagekit*.so.*
|
||||
%{_libdir}/packagekit-backend/libpk_backend_dummy.so
|
||||
%{_libdir}/packagekit-backend/libpk_backend_test_*.so
|
||||
%ghost %verify(not md5 size mtime) %{_localstatedir}/lib/PackageKit/transactions.db
|
||||
%{_datadir}/dbus-1/system-services/*.service
|
||||
%dir %{_libdir}/packagekit-plugins-2
|
||||
%{_libdir}/packagekit-plugins-2/*.so
|
||||
%{_libdir}/girepository-1.0/PackageKitPlugin-1.0.typelib
|
||||
%{_datadir}/dbus-1/interfaces/*.xml
|
||||
%{_unitdir}/packagekit-offline-update.service
|
||||
%{_unitdir}/packagekit.service
|
||||
@ -332,17 +313,20 @@ popd > /dev/null
|
||||
%dir %{_includedir}/PackageKit/packagekit-glib2
|
||||
%{_includedir}/PackageKit/packagekit-glib*/*.h
|
||||
%{_datadir}/gir-1.0/PackageKitGlib-1.0.gir
|
||||
%{_datadir}/gir-1.0/PackageKitPlugin-1.0.gir
|
||||
%{_datadir}/gtk-doc/html/PackageKit
|
||||
|
||||
%files backend-devel
|
||||
%defattr(-,root,root,-)
|
||||
%dir %{_includedir}/PackageKit
|
||||
%{_includedir}/PackageKit/plugin
|
||||
%{_libdir}/pkgconfig/packagekit-plugin.pc
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Sep 12 2014 Richard Hughes <rhughes@redhat.com> - 1.0.0-1
|
||||
- New upstream release
|
||||
- Add a D-Bus interface and helpers for offline support
|
||||
- Do not shutdown the daemon on idle by default
|
||||
- Refresh the NetworkManager state when the daemon starts
|
||||
- Remove pk-debuginfo-install
|
||||
- Remove the events/pre-transaction.d functionality
|
||||
- Remove the pkexec systemd helpers
|
||||
- Remove the plugin interface
|
||||
- Remove various options from the config file
|
||||
|
||||
* Tue Sep 02 2014 Richard Hughes <rhughes@redhat.com> - 0.9.5-1
|
||||
- New upstream release
|
||||
- Add a new tool called packagekit-direct that can run without a daemon
|
||||
|
||||
Loading…
Reference in New Issue
Block a user