From e7c552bba5746ee9b635b1048f8ae6d42fa15e0e Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Aug 04 2010 11:14:18 +0000 Subject: * Wed Aug 04 2010 Richard Hughes - 0.6.7-1 - New upstream release of 0.6.7. - Add gnome-packagekit and kpackagekit to the list of infrastructure packages - Do not issue RepoListChanged when we disable or enable the media repo automatically - Ensure we disable the MediaRepo when the PackageKit backend has finished - Wrap _getEVR in a try,catch block to deal with invalid version numbers. Fixes #612360 - If ProxyHTTP are set in PackageKit.conf then ignore the user proxy setting. Fixes #604317 - Don't ship README AUTHORS NEWS COPYING in all subpackages. Fixes #612332 - Recognise bluetooth connections as mobile networks. Fixes #609827 - Unbreak CNF after the daemon moved to libexec. Fixes #613514 --- diff --git a/.gitignore b/.gitignore index 4227a5e..71b0c9a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ PackageKit-0.6.6.tar.bz2 +PackageKit-0.6.7.tar.bz2 diff --git a/PackageKit.spec b/PackageKit.spec index cbf27cd..745cdc0 100644 --- a/PackageKit.spec +++ b/PackageKit.spec @@ -4,8 +4,8 @@ Summary: Package management service Name: PackageKit -Version: 0.6.6 -Release: 3%{?dist} +Version: 0.6.7 +Release: 0%{?dist} License: GPLv2+ and LGPLv2+ URL: http://www.packagekit.org Source0: http://www.packagekit.org/releases/%{name}-%{version}.tar.bz2 @@ -52,8 +52,6 @@ BuildRequires: pango-devel BuildRequires: pm-utils-devel BuildRequires: fontconfig-devel BuildRequires: gobject-introspection-devel -#BuildRequires: gtk-sharp2-devel -#BuildRequires: mono-core # functionality moved to udev itself Obsoletes: PackageKit-udev-helper < %{version}-%{release} @@ -329,7 +327,6 @@ update-mime-database %{_datadir}/mime &> /dev/null || : %files docs %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_datadir}/gtk-doc/html/PackageKit %dir %{_datadir}/PackageKit/website %{_datadir}/PackageKit/website/*.html @@ -342,7 +339,6 @@ update-mime-database %{_datadir}/mime &> /dev/null || : %if 0%{?rhel} == 0 %files smart %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libdir}/packagekit-backend/libpk_backend_smart.so %dir %{_datadir}/PackageKit/helpers/smart %{_datadir}/PackageKit/helpers/smart/* @@ -350,7 +346,6 @@ update-mime-database %{_datadir}/mime &> /dev/null || : %files yum %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %config(noreplace) %{_sysconfdir}/PackageKit/Yum.conf %{_libdir}/packagekit-backend/libpk_backend_yum.so %dir %{_datadir}/PackageKit/helpers/yum @@ -358,66 +353,55 @@ update-mime-database %{_datadir}/mime &> /dev/null || : %files yum-plugin %defattr(-, root, root) -%doc README AUTHORS NEWS COPYING %config(noreplace) %{_sysconfdir}/yum/pluginconf.d/refresh-packagekit.conf /usr/lib/yum-plugins/refresh-packagekit.* %files glib %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libdir}/*packagekit-glib2.so.* %{_libdir}/girepository-1.0/PackageKitGlib-1.0.typelib %{_datadir}/gir-1.0/PackageKitGlib-1.0.gir %files qt %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libdir}/*packagekit-qt*.so.* %files cron %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %config %{_sysconfdir}/cron.daily/packagekit-background.cron %config(noreplace) %{_sysconfdir}/sysconfig/packagekit-background %files debug-install %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_bindir}/pk-debuginfo-install %{_datadir}/man/man1/pk-debuginfo-install.1.gz %files browser-plugin %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libdir}/mozilla/plugins/packagekit-plugin.so %files gstreamer-plugin %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libexecdir}/pk-gstreamer-install %{_libexecdir}/gst-install-plugins-helper %files gtk-module %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libdir}/gtk-?.0/modules/*.so %files command-not-found %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_sysconfdir}/profile.d/* %{_libexecdir}/pk-command-not-found %config(noreplace) %{_sysconfdir}/PackageKit/CommandNotFound.conf %files device-rebind %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_sbindir}/pk-device-rebind %{_datadir}/man/man1/pk-device-rebind.1.gz %files glib-devel %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libdir}/libpackagekit-glib2.so %{_libdir}/pkgconfig/packagekit-glib2.pc %dir %{_includedir}/PackageKit @@ -426,7 +410,6 @@ update-mime-database %{_datadir}/mime &> /dev/null || : %files qt-devel %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %{_libdir}/libpackagekit-qt*.so %{_libdir}/pkgconfig/packagekit-qt.pc %dir %{_includedir}/PackageKit @@ -437,12 +420,22 @@ update-mime-database %{_datadir}/mime &> /dev/null || : %files backend-devel %defattr(-,root,root,-) -%doc README AUTHORS NEWS COPYING %dir %{_includedir}/PackageKit %dir %{_includedir}/PackageKit/backend %{_includedir}/PackageKit/backend/*.h %changelog +* Wed Aug 04 2010 Richard Hughes - 0.6.7-1 +- New upstream release of 0.6.7. +- Add gnome-packagekit and kpackagekit to the list of infrastructure packages +- Do not issue RepoListChanged when we disable or enable the media repo automatically +- Ensure we disable the MediaRepo when the PackageKit backend has finished +- Wrap _getEVR in a try,catch block to deal with invalid version numbers. Fixes #612360 +- If ProxyHTTP are set in PackageKit.conf then ignore the user proxy setting. Fixes #604317 +- Don't ship README AUTHORS NEWS COPYING in all subpackages. Fixes #612332 +- Recognise bluetooth connections as mobile networks. Fixes #609827 +- Unbreak CNF after the daemon moved to libexec. Fixes #613514 + * Wed Jul 21 2010 David Malcolm - 0.6.6-3 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild diff --git a/sources b/sources index 2304750..36ac3b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8e9b0cd25ecf775ecb4f687a50940b5c PackageKit-0.6.6.tar.bz2 +842d6b2b02baabc3b00ee7a77887241a PackageKit-0.6.7.tar.bz2