- Apply a couple of patches from upstream to fix development filtering and

installing the web plugin.
This commit is contained in:
Richard Hughes 2008-10-28 14:41:02 +00:00
parent 3174f63558
commit 1f2e10143f
2 changed files with 25 additions and 1 deletions

View File

@ -22,6 +22,9 @@ 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
Requires: dbus >= %{dbus_version}
Requires: dbus-glib >= %{dbus_glib_version}
Requires: PackageKit-glib = %{version}-%{release}
@ -204,6 +207,7 @@ codecs from configured repositories using PackageKit.
%setup -q
%patch0 -p1
%patch1 -p1
%patch2 -p1
%build
%configure --enable-yum --enable-smart --with-default-backend=yum --disable-local
@ -377,7 +381,8 @@ update-mime-database %{_datadir}/mime &> /dev/null || :
%changelog
* Tue Oct 28 2008 Richard Hughes <rhughes@redhat.com> - 0.3.9-2
- Apply a patch from upstream to fix development filtering.
- Apply a couple of patches from upstream to fix development filtering
and installing the web plugin.
* Mon Oct 27 2008 Richard Hughes <rhughes@redhat.com> - 0.3.9-1
- New upstream version

View File

@ -0,0 +1,19 @@
commit 211b538cd0d6e420f288af49f7bb106cf99b4ce6
Author: Richard Hughes <richard@hughsie.com>
Date: Tue Oct 28 14:29:02 2008 +0000
bugfix: use the correct session interface in the browser plugin
diff --git a/contrib/packagekit-plugin/src/contents.cpp b/contrib/packagekit-plugin/src/contents.cpp
index bd0d69f..2c16e92 100644
--- a/contrib/packagekit-plugin/src/contents.cpp
+++ b/contrib/packagekit-plugin/src/contents.cpp
@@ -662,6 +662,8 @@ PkpContents::installPackage (Time time)
this,
(GDestroyNotify)0,
24 * 60 * 1000 * 1000, /* one day */
+ G_TYPE_UINT, 0, /* xid */
+ G_TYPE_UINT, 0, /* timespec */
G_TYPE_STRING, mAvailablePackageName.c_str(),
G_TYPE_INVALID,
G_TYPE_INVALID);