commit libgnomesu for openSUSE:Factory
Hello community, here is the log from the commit of package libgnomesu for openSUSE:Factory checked in at Tue Feb 3 22:52:26 CET 2009. -------- --- GNOME/libgnomesu/libgnomesu.changes 2008-12-28 08:25:42.000000000 +0100 +++ libgnomesu/libgnomesu.changes 2009-02-03 14:55:41.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Feb 3 14:55:27 CET 2009 - schwab@suse.de + +- Remove broken casts. + +------------------------------------------------------------------- calling whatdependson for head-i586 New: ---- libgnomesu-utils.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libgnomesu.spec ++++++ --- /var/tmp/diff_new_pack.m23294/_old 2009-02-03 22:51:36.000000000 +0100 +++ /var/tmp/diff_new_pack.m23294/_new 2009-02-03 22:51:36.000000000 +0100 @@ -29,7 +29,7 @@ Provides: xsu Obsoletes: xsu Version: 1.0.0 -Release: 298 +Release: 302 Summary: GNOME su Library Source: %{name}-%{version}.tar.bz2 Source1: gnomesu-pam.pamd @@ -45,6 +45,7 @@ Patch6: libgnomesu-unsetenv.patch # PATCH-FIX-OPENSUSE libgnomesu-modernize.patch bnc462073 abockover@novell.com -- Make gnomesu look and act more like PolicyKit-gnome (HIG compliant, use the icon theme, etc.) Patch7: libgnomesu-modernize.patch +Patch8: libgnomesu-utils.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build Requires: %{name}-lang = %{version} pam libgnomesu0 @@ -101,6 +102,7 @@ %patch5 %patch6 -p1 %patch7 +%patch8 cp -a %{S:1} pam-backend/gnomesu-pam cp %{S:2} po/pl.po @@ -188,6 +190,8 @@ %{_libdir}/pkgconfig/libgnomesu-1.0.pc %changelog +* Tue Feb 03 2009 schwab@suse.de +- Remove broken casts. * Sun Dec 28 2008 abockover@novell.com - Patch to "modernize" gnomesu in the image of PolicyKit-gnome * Fix bnc#462073 @@ -198,7 +202,7 @@ * Thu Nov 06 2008 vuntz@novell.com - Add libgnomesu-unsetenv.patch to unset the DBUS_SESSION_BUS_ADDRESS environment variable. Fix bnc#428963. -* Thu Oct 09 2008 hpj@novell.com +* Fri Oct 10 2008 hpj@novell.com - Remove libgnomesu-1.0.0-ensure-xauthority-env.patch. It breaks with the xauth location used by the new gdm. * Fri Oct 03 2008 vuntz@novell.com @@ -235,7 +239,7 @@ * Fri Mar 31 2006 danw@suse.de - Don't mark the error text as "selectable", since that will make it focusable as well and mess up the tab order. #162600 -* Mon Mar 20 2006 hpj@suse.de +* Tue Mar 21 2006 hpj@suse.de - Add patch to make it spin the main loop while waiting for the child to exit. Fixes Novell bug #156445. * Mon Jan 30 2006 ro@suse.de @@ -244,7 +248,7 @@ - converted neededforbuild to BuildRequires * Mon Oct 17 2005 hpj@suse.de - Fixed the nlist/nmerge patch to actually work (#119600). -* Thu Oct 13 2005 hpj@suse.de +* Fri Oct 14 2005 hpj@suse.de - Run xauth nlist/nmerge instead of list, prevents DNS lookups (#119600). * Tue Sep 20 2005 sbrabec@suse.cz ++++++ libgnomesu-utils.patch ++++++ --- src/utils.c +++ src/utils.c @@ -89,10 +89,10 @@ LGSD(replace_all) (gchar **str, gchar *f { gint pos; - pos = GPOINTER_TO_INT (found) - GPOINTER_TO_INT (newstr->str); + pos = found - newstr->str; g_string_erase (newstr, pos, strlen (from)); g_string_insert (newstr, pos, to); - found = GINT_TO_POINTER (GPOINTER_TO_INT (found) + strlen (to)); + found = newstr->str + pos + strlen (to); found = strstr (found, from); } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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