New upstream release
- Don't search in command-not-found if backend is known to be too slow - Correctly match the installed file to a package when checking shared libraries - Do not send the UpdatesChanged signal for only-download or simulate - Don't throw a cryptic warning when 'pkcon update' has no packages needing an update - Emit RequireRestart(system) in a PackageKit daemon plugin - Move the libpackagekit-qt code to a separate project - Perform the simulation of spawned transactions correctly - Reinstate 'pkcon list-create' for the service pack functionality - Show a progressbar if the user presses [esc] during the system update - yum: Don't crash when resolving groups - yum: Don't rely on a blacklist for RequireRestart - yum: Handle NoMoreMirrorsRepoError when using repo.getPackage() - yum: Only emit the package list once when using WhatProvides() with multiple search terms - yum: Use a the error NoPackagesToUpdate when there are no updates available - zif: Don't try to cancel the backend if it's not running
This commit is contained in:
parent
f31dab3ea1
commit
c1381698c0
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,3 +21,4 @@ PackageKit-0.6.7.tar.bz2
|
||||
/PackageKit-0.8.3.tar.xz
|
||||
/PackageKit-0.8.4.tar.xz
|
||||
/PackageKit-0.8.5.tar.xz
|
||||
/PackageKit-0.8.6.tar.xz
|
||||
|
||||
@ -2,8 +2,8 @@
|
||||
|
||||
Summary: Package management service
|
||||
Name: PackageKit
|
||||
Version: 0.8.5
|
||||
Release: 3%{?dist}
|
||||
Version: 0.8.6
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+ and LGPLv2+
|
||||
URL: http://www.packagekit.org
|
||||
Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.xz
|
||||
@ -51,8 +51,6 @@ BuildRequires: xulrunner-devel
|
||||
BuildRequires: libarchive-devel
|
||||
BuildRequires: gstreamer-devel
|
||||
BuildRequires: gstreamer-plugins-base-devel
|
||||
BuildRequires: qt4-devel
|
||||
BuildRequires: cppunit-devel
|
||||
BuildRequires: pango-devel
|
||||
BuildRequires: pm-utils-devel
|
||||
BuildRequires: fontconfig-devel
|
||||
@ -140,15 +138,6 @@ Provides: PackageKit-libs = %{version}-%{release}
|
||||
%description glib
|
||||
GLib libraries for accessing PackageKit.
|
||||
|
||||
%package qt
|
||||
Summary: QT libraries for accessing PackageKit
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
%{?_qt4_version:Requires: qt4%{?_isa} >= %{_qt4_version}}
|
||||
|
||||
%description qt
|
||||
QT libraries for accessing PackageKit.
|
||||
|
||||
%package cron
|
||||
Summary: Cron job and related utilities for PackageKit
|
||||
Group: System Environment/Base
|
||||
@ -179,14 +168,6 @@ Provides: PackageKit-devel = %{version}-%{release}
|
||||
%description glib-devel
|
||||
GLib headers and libraries for PackageKit.
|
||||
|
||||
%package qt-devel
|
||||
Summary: Qt Libraries and headers for PackageKit
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}-qt%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description qt-devel
|
||||
Qt headers and libraries for PackageKit.
|
||||
|
||||
%package backend-devel
|
||||
Summary: Headers to compile out of tree PackageKit backends
|
||||
Group: Development/Libraries
|
||||
@ -309,10 +290,8 @@ systemctl enable packagekit-offline-update.service &> /dev/null || :
|
||||
update-mime-database %{_datadir}/mime &> /dev/null || :
|
||||
|
||||
%post glib -p /sbin/ldconfig
|
||||
%post qt -p /sbin/ldconfig
|
||||
|
||||
%postun glib -p /sbin/ldconfig
|
||||
%postun qt -p /sbin/ldconfig
|
||||
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
@ -400,10 +379,6 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
|
||||
%{_libdir}/*packagekit-glib2.so.*
|
||||
%{_libdir}/girepository-1.0/PackageKitGlib-1.0.typelib
|
||||
|
||||
%files qt
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/*packagekit-qt*.so.*
|
||||
|
||||
%files cron
|
||||
%defattr(-,root,root,-)
|
||||
%config %{_sysconfdir}/cron.daily/packagekit-background.cron
|
||||
@ -450,13 +425,6 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
|
||||
%{_datadir}/gir-1.0/PackageKitGlib-1.0.gir
|
||||
%{_datadir}/gir-1.0/PackageKitPlugin-1.0.gir
|
||||
|
||||
%files qt-devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/libpackagekit-qt*.so
|
||||
%{_includedir}/PackageKit/packagekit-qt2/*
|
||||
%{_libdir}/pkgconfig/packagekit-qt2.pc
|
||||
%{_libdir}/cmake/packagekit-qt2/packagekit-qt2*.cmake
|
||||
|
||||
%files backend-devel
|
||||
%defattr(-,root,root,-)
|
||||
%dir %{_includedir}/PackageKit
|
||||
@ -464,6 +432,24 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
|
||||
%{_libdir}/pkgconfig/packagekit-plugin.pc
|
||||
|
||||
%changelog
|
||||
* Mon Nov 26 2012 Richard Hughes <rhughes@redhat.com> - 0.8.6-1
|
||||
- New upstream release
|
||||
- Don't search in command-not-found if backend is known to be too slow
|
||||
- Correctly match the installed file to a package when checking shared libraries
|
||||
- Do not send the UpdatesChanged signal for only-download or simulate
|
||||
- Don't throw a cryptic warning when 'pkcon update' has no packages needing an update
|
||||
- Emit RequireRestart(system) in a PackageKit daemon plugin
|
||||
- Move the libpackagekit-qt code to a separate project
|
||||
- Perform the simulation of spawned transactions correctly
|
||||
- Reinstate 'pkcon list-create' for the service pack functionality
|
||||
- Show a progressbar if the user presses [esc] during the system update
|
||||
- yum: Don't crash when resolving groups
|
||||
- yum: Don't rely on a blacklist for RequireRestart
|
||||
- yum: Handle NoMoreMirrorsRepoError when using repo.getPackage()
|
||||
- yum: Only emit the package list once when using WhatProvides() with multiple search terms
|
||||
- yum: Use a the error NoPackagesToUpdate when there are no updates available
|
||||
- zif: Don't try to cancel the backend if it's not running
|
||||
|
||||
* Wed Oct 31 2012 Rex Dieter <rdieter@fedoraproject.org> 0.8.5-3
|
||||
- -yum-plugin: make PK dep versioned
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user