[PackageKit-commit] packagekit: Branch 'master' - 3 commits
Richard Hughes
hughsient at kemper.freedesktop.org
Mon Feb 2 05:54:24 PST 2009
NEWS | 29 +++++++++++++++++++++++++++++
configure.ac | 11 ++++++++++-
contrib/browser-plugin/Makefile.am | 2 +-
docs/html/pk-download.html | 1 +
src/pk-spawn.c | 4 ++--
5 files changed, 43 insertions(+), 4 deletions(-)
New commits:
commit dfcaafa7bae018ee9f2bc06dabb9c5d795f6061b
Author: Richard Hughes <richard at hughsie.com>
Date: Mon Feb 2 13:52:25 2009 +0000
Release version 0.4.3
diff --git a/NEWS b/NEWS
index 54a80ea..e615a0f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,32 @@
+Version 0.4.3
+~~~~~~~~~~~~~
+Released: 2009-02-02
+
+Translations:
+ - Updated Finnish translation (Ville-Pekka Vainio)
+ - Updated Catalan translation (Xavier Conde)
+
+New Features:
+ - Add new packagekit-sharp binding (Stephane Delcroix)
+ - Allow the user to specify a complete output file name with pkgenpack (Richard Hughes)
+
+Bugfixes:
+ - Repair pkcon resolve argument parsing (Martin Pitt)
+ - Remove dep on python-sqlite2 and use internal python sqlite. Fixes rh#481270 (Richard Hughes)
+ - Dist the website in the tarball correctly, and install in the -docs subpackage (Richard Hughes)
+ - Fix up a translation in pkcon when we fail to get the time since action (Richard Hughes)
+ - Add an option to configure so we can specify a different directory. Fixes fd#19884 (Richard Hughes)
+ - Remove bare send_interface lines in the DBus rules (Scott Reeves)
+ - Add _get_info, get_id and _get_summary for PkPackageObj (Stephane Delcroix)
+ - Removed -Wswitch-enum from compiler switches (Valeriy Lyasotskiy)
+ - Don't print an internal error if we don't pass an argument to --package (Utsav Handa)
+
+Backends:
+ - alpm: Change source code to be more standards compliant (Valeriy Lyasotskiy)
+ - smart: Don't filter *-testing channels as development (Anders F Bjorklund)
+ - yum: Get some useful text when yum passes us an invalid message. Fixes fd#19781 (Richard Hughes)
+ - zypp: Remove GROUP_ENUM_UNKNOWN as engine returns empty if included in list (Scott Reeves)
+
Version 0.4.2
~~~~~~~~~~~~~
Released: 2009-01-19
diff --git a/configure.ac b/configure.ac
index fc45a9a..e6b0c79 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ DEVELOPMENT_RELEASE=yes
# AGE If libpackagekit can be linked into executables which can be
# built with previous versions of this library. Don't use.
LT_CURRENT=11
-LT_REVISION=2
+LT_REVISION=3
LT_AGE=0
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
diff --git a/docs/html/pk-download.html b/docs/html/pk-download.html
index 9eefe7c..7c1451f 100644
--- a/docs/html/pk-download.html
+++ b/docs/html/pk-download.html
@@ -68,6 +68,7 @@ Releases are normally once every 1-2 weeks.
</p>
<table>
<tr><td><b>Version</b></td><td> </td><td><b>Date</b></td></tr>
+<tr><td>0.4.3</td><td></td><td>2009-02-02</td></tr>
<tr><td>0.4.2</td><td></td><td>2009-01-19</td></tr>
<tr><td>0.4.1</td><td></td><td>2009-01-08</td></tr>
<tr><td>0.4.0</td><td></td><td>2008-12-09</td></tr>
commit 6c9d90261540511fcc9af3b7daa8632e299f5bba
Author: Richard Hughes <richard at hughsie.com>
Date: Mon Feb 2 13:52:11 2009 +0000
trivial: fix up self check now we've got a longer sigquit timeout
diff --git a/src/pk-spawn.c b/src/pk-spawn.c
index 5252ba3..df1c1cd 100644
--- a/src/pk-spawn.c
+++ b/src/pk-spawn.c
@@ -847,8 +847,8 @@ pk_spawn_test (EggTest *test)
egg_test_loop_check (test);
/************************************************************/
- egg_test_title (test, "make sure finished in SIGKILL");
- if (mexit == PK_SPAWN_EXIT_TYPE_SIGKILL)
+ egg_test_title (test, "make sure finished in SIGQUIT");
+ if (mexit == PK_SPAWN_EXIT_TYPE_SIGQUIT)
egg_test_success (test, NULL);
else
egg_test_failed (test, "finish %i!", mexit);
commit e4252cb77740cade954837888bb4516f3ae0256d
Author: Richard Hughes <richard at hughsie.com>
Date: Mon Feb 2 11:52:21 2009 +0000
bugfix: add an option to configure so we can specify a different browser plugin directory. Fixes fd#19884
diff --git a/configure.ac b/configure.ac
index 52077aa..fc45a9a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -354,6 +354,15 @@ if test x$enable_browser_plugin = xyes; then
CPPFLAGS="$packagekit_save_CPPFLAGS"
LDFLAGS="$packagekit_save_LDFLAGS"
+
+ # Are we specifying a different mozilla plugin directory?
+ AC_ARG_WITH(mozilla-plugin-dir, [AC_HELP_STRING([--with-mozilla-plugin-dir=<dir>], [where to put the mozilla plugin])])
+ if ! test -z "$with_mozilla_plugin_dir" ; then
+ MOZILLA_PLUGIN_DIR="$with_mozilla_plugin_dir"
+ else
+ MOZILLA_PLUGIN_DIR="$LIBDIR/mozilla/plugins"
+ fi
+ AC_SUBST(MOZILLA_PLUGIN_DIR)
fi
else
build_browser_plugin=no
diff --git a/contrib/browser-plugin/Makefile.am b/contrib/browser-plugin/Makefile.am
index 9f3b570..1f563d8 100644
--- a/contrib/browser-plugin/Makefile.am
+++ b/contrib/browser-plugin/Makefile.am
@@ -1,4 +1,4 @@
-plugindir=$(libdir)/mozilla/plugins
+plugindir=$(MOZILLA_PLUGIN_DIR)
plugin_LTLIBRARIES = packagekit-plugin.la
packagekit_plugin_la_LDFLAGS = -rpath $(plugindir) -module -avoid-version -no-undefined
More information about the PackageKit-commit
mailing list