commit cups-pk-helper for openSUSE:Factory
Hello community, here is the log from the commit of package cups-pk-helper for openSUSE:Factory checked in at Wed Mar 31 19:57:41 CEST 2010. -------- --- cups-pk-helper/cups-pk-helper.changes 2010-02-19 17:11:18.000000000 +0100 +++ /mounts/work_src_done/STABLE/cups-pk-helper/cups-pk-helper.changes 2010-03-22 15:28:51.000000000 +0100 @@ -1,0 +2,6 @@ +Mon Mar 22 10:10:47 UTC 2010 - dimstar@opensuse.org + +- Add cups-pk-helper-buildfix.patch to fix build, taken from + upstream. + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- cups-pk-helper-buildfix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cups-pk-helper.spec ++++++ --- /var/tmp/diff_new_pack.pdSXlm/_old 2010-03-31 19:56:51.000000000 +0200 +++ /var/tmp/diff_new_pack.pdSXlm/_new 2010-03-31 19:56:51.000000000 +0200 @@ -22,10 +22,12 @@ License: GPLv2+ Group: Hardware/Printing Version: 0.1.0 -Release: 1 +Release: 2 Summary: PolicyKit helper to configure cups with fine-grained privileges Url: http://www.vuntz.net/download/cups-pk-helper/ Source0: http://www.vuntz.net/download/cups-pk-helper/%{name}-%{version}.tar.bz2 +# PATCH-FIX-UPSTREAM cups-pk-helper-buildfix.patch fdo#27235 dimstar@opensuse.org -- Fix build: Patch from upstream commit df2b6a4. +Patch0: cups-pk-helper-buildfix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: cups-devel # For directory ownership @@ -43,6 +45,7 @@ %prep %setup -q +%patch0 -p1 %build %configure --libexecdir=%{_libdir}/cups-pk-helper ++++++ cups-pk-helper-buildfix.patch ++++++
From df2b6a40ac99360aafa05c71be28ee8a972bd8c4 Mon Sep 17 00:00:00 2001 From: Vincent Untz <vuntz@novell.com> Date: Mon, 22 Mar 2010 10:35:03 +0000 Subject: Make the include/exclude schemes work when getting devices with cups 1.4
We were using g_strjoin() instead of g_strjoinv(). Thanks to Dominique Leuenberger <dominique-freedesktop.org@leuenberger.net> for noticing the warning. http://bugs.freedesktop.org/show_bug.cgi?id=27235 --- diff --git a/src/cups.c b/src/cups.c index e439051..4186f42 100644 --- a/src/cups.c +++ b/src/cups.c @@ -1227,12 +1227,12 @@ _cph_cups_devices_get_14 (CphCups *cups, timeout_param = timeout; if (include_schemes && len_include > 0) - include_schemes_param = g_strjoin (",", include_schemes); + include_schemes_param = g_strjoinv (",", (char **) include_schemes); else include_schemes_param = g_strdup (CUPS_INCLUDE_ALL); if (exclude_schemes && len_exclude > 0) - exclude_schemes_param = g_strjoin (",", exclude_schemes); + exclude_schemes_param = g_strjoinv (",", (char **) exclude_schemes); else exclude_schemes_param = g_strdup (CUPS_EXCLUDE_NONE); -- cgit v0.8.3-6-g21f6 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de