rpms/PackageKit/devel .cvsignore, 1.34, 1.35 PackageKit.spec, 1.82, 1.83 sources, 1.35, 1.36 pk-cleanup-transaction-longer.patch, 1.1, NONE pk-fix-browser-plugin.patch, 1.1, NONE pk-fix-get-distro-upgrade.patch, 1.1, NONE pk-install-qt-cmake-build.patch, 1.1, NONE pk-yum-fix-devel-filtering.patch, 1.1, NONE

Richard Hughes rhughes at fedoraproject.org
Tue Nov 11 09:23:47 UTC 2008


Author: rhughes

Update of /cvs/pkgs/rpms/PackageKit/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30614

Modified Files:
	.cvsignore PackageKit.spec sources 
Removed Files:
	pk-cleanup-transaction-longer.patch 
	pk-fix-browser-plugin.patch pk-fix-get-distro-upgrade.patch 
	pk-install-qt-cmake-build.patch 
	pk-yum-fix-devel-filtering.patch 
Log Message:
* Tue Nov 11 2008 Richard Hughes  <rhughes at redhat.com> - 0.3.10-1
- New upstream version
- Drop all upstreamed patches



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/PackageKit/devel/.cvsignore,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- .cvsignore	27 Oct 2008 11:50:33 -0000	1.34
+++ .cvsignore	11 Nov 2008 09:23:17 -0000	1.35
@@ -1 +1 @@
-PackageKit-0.3.9.tar.gz
+PackageKit-0.3.10.tar.gz


Index: PackageKit.spec
===================================================================
RCS file: /cvs/pkgs/rpms/PackageKit/devel/PackageKit.spec,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- PackageKit.spec	5 Nov 2008 09:54:59 -0000	1.82
+++ PackageKit.spec	11 Nov 2008 09:23:17 -0000	1.83
@@ -7,8 +7,8 @@
 
 Summary:   System daemon that is a DBUS abstraction layer for package management
 Name:      PackageKit
-Version:   0.3.9
-Release:   4%{?dist}
+Version:   0.3.10
+Release:   1%{?dist}
 License:   GPLv2+
 Group:     System Environment/Libraries
 URL:       http://packagekit.freedesktop.org
@@ -19,21 +19,6 @@
 # Set Vendor.conf up for Fedora.
 Patch0:    PackageKit-0.3.8-Fedora-Vendor.conf.patch
 
-# upstream, 99f995788473f4627acb7447aa467a61bc61893a
-Patch1:    pk-yum-fix-devel-filtering.patch
-
-# upstream, 211b538cd0d6e420f288af49f7bb106cf99b4ce6
-Patch2:    pk-fix-browser-plugin.patch
-
-# upstream, 746b79e082e696b6eae9df10916e00e2a847b138
-Patch3:    pk-install-qt-cmake-build.patch
-
-# upstream, 32f39d67971f1bd6dbf4b559a8f95e8712edccf8
-Patch4:    pk-fix-get-distro-upgrade.patch
-
-# upstream, with the proper fix not this bodge
-Patch5:    pk-cleanup-transaction-longer.patch
-
 Requires: dbus >= %{dbus_version}
 Requires: dbus-glib >= %{dbus_glib_version}
 Requires: PackageKit-glib = %{version}-%{release}
@@ -215,11 +200,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
-%patch5 -p1
 
 %build
 %configure --enable-yum --enable-smart --with-default-backend=yum --disable-local
@@ -237,6 +217,7 @@
 rm -f $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins/packagekit-plugin.a
 rm -f $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins/packagekit-plugin.la
 chmod 755 $RPM_BUILD_ROOT%{_libexecdir}/PackageKitDbusTest.py
+touch $RPM_BUILD_ROOT%{_localstatedir}/cache/PackageKit/groups.sqlite
 
 # create a link that GStreamer will recognise
 pushd ${RPM_BUILD_ROOT}%{_libexecdir} > /dev/null
@@ -259,6 +240,12 @@
 %post
 update-mime-database %{_datadir}/mime &> /dev/null || :
 
+# the job count used to live in /var/run, but it's now in /var/lib with the
+# other persistent bits
+if [ -e %{_localstatedir}/run/PackageKit/job_count.dat ]; then
+	mv %{_localstatedir}/run/PackageKit/job_count.dat %{_localstatedir}/lib/PackageKit/job_count.dat
+fi
+
 %postun
 update-mime-database %{_datadir}/mime &> /dev/null || :
 
@@ -276,9 +263,8 @@
 %dir %{_sysconfdir}/PackageKit
 %dir %{_localstatedir}/lib/PackageKit
 %dir %{python_sitelib}/packagekit
-%dir %{_localstatedir}/run/PackageKit
-%dir %{_localstatedir}/run/PackageKit/udev
 %dir %{_localstatedir}/cache/PackageKit
+%ghost %verify(not md5 size mtime) %{_localstatedir}/cache/PackageKit/groups.sqlite
 %dir %{_localstatedir}/cache/PackageKit/downloads
 %{python_sitelib}/packagekit/*py*
 %dir %{_sysconfdir}/bash_completion.d
@@ -302,7 +288,7 @@
 %{_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
-%ghost %verify(not md5 size mtime) %{_localstatedir}/run/PackageKit/job_count.dat
+%ghost %verify(not md5 size mtime) %{_localstatedir}/lib/PackageKit/job_count.dat
 %{_datadir}/dbus-1/system-services/*.service
 %{_libdir}/pm-utils/sleep.d/95packagekit
 %{_libexecdir}/*py*
@@ -393,6 +379,10 @@
 %{_includedir}/PackageKit/backend/*.h
 
 %changelog
+* Tue Nov 11 2008 Richard Hughes  <rhughes at redhat.com> - 0.3.10-1
+- New upstream version
+- Drop all upstreamed patches
+
 * Wed Nov 05 2008 Richard Hughes  <rhughes at redhat.com> - 0.3.9-4
 - Increase the timeout for cleaning up unused transactions. Due to a bug
   in the PkClient library the new TID was not being requested, and the old


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/PackageKit/devel/sources,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- sources	27 Oct 2008 11:50:33 -0000	1.35
+++ sources	11 Nov 2008 09:23:17 -0000	1.36
@@ -1 +1 @@
-c13ecaa4cb300802e9f72d60db7b759c  PackageKit-0.3.9.tar.gz
+7fc32329aeb80e6f6eeda7db46d4563b  PackageKit-0.3.10.tar.gz


--- pk-cleanup-transaction-longer.patch DELETED ---


--- pk-fix-browser-plugin.patch DELETED ---


--- pk-fix-get-distro-upgrade.patch DELETED ---


--- pk-install-qt-cmake-build.patch DELETED ---


--- pk-yum-fix-devel-filtering.patch DELETED ---




More information about the scm-commits mailing list