Hello community,

here is the log from the commit of package yast2-dbus-client for 
openSUSE:Factory
checked in at Wed Jun 1 09:18:14 CEST 2011.



--------
--- yast2-dbus-client/yast2-dbus-client.changes 2009-07-28 08:59:08.000000000 
+0200
+++ /mounts/work_src_done/STABLE/yast2-dbus-client/yast2-dbus-client.changes    
2011-05-31 16:08:56.000000000 +0200
@@ -1,0 +2,6 @@
+Tue May 31 16:04:48 CEST 2011 - aschn...@suse.de
+
+- fixed passing bool to dbus library
+- 2.21.0
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  yast2-dbus-client-2.18.0.tar.bz2

New:
----
  yast2-dbus-client-2.21.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-dbus-client.spec ++++++
--- /var/tmp/diff_new_pack.tEJsBp/_old  2011-06-01 09:17:19.000000000 +0200
+++ /var/tmp/diff_new_pack.tEJsBp/_new  2011-06-01 09:17:19.000000000 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package yast2-dbus-client (Version 2.18.0)
+# spec file for package yast2-dbus-client
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,21 +19,26 @@
 
 
 Name:           yast2-dbus-client
-Version:        2.18.0
+Version:        2.21.0
 Release:        1
+
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-dbus-client-2.18.0.tar.bz2
+Source0:        yast2-dbus-client-2.21.0.tar.bz2
+
 Prefix:         /usr
+
 Group:          System/YaST
 License:        GPL v2 or later
 # obviously
 BuildRequires:  gcc-c++
 # needed for all yast packages
 BuildRequires:  yast2-core-devel yast2-devtools
+
 # docbook docs
 BuildRequires:  docbook-xsl-stylesheets libxslt
 # for the DBus agent
 BuildRequires:  dbus-1-devel
+
 Summary:        YaST2 - DBus Client Library
 
 %description
@@ -41,14 +46,16 @@
 from YaST scripts.
 
 %prep
-%setup -n yast2-dbus-client-2.18.0
+%setup -n yast2-dbus-client-2.21.0
 
 %build
 %{prefix}/bin/y2tool y2autoconf
 %{prefix}/bin/y2tool y2automake
 autoreconf --force --install
+
 export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
 export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
+
 %{?suse_update_config:%{suse_update_config -f}}
 ./configure --libdir=%{_libdir} --prefix=%{prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
@@ -62,6 +69,7 @@
     d=${f##*/}
     %suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop}
 done
+
 # remove not needed development files
 rm %{buildroot}/%{_libdir}/YaST2/plugin/libpy2ag_dbus.la
 rm %{buildroot}/%{_libdir}/YaST2/plugin/libpy2ag_dbus.so
@@ -76,6 +84,7 @@
 
 %files
 %defattr(-,root,root)
+
 %{_libdir}/YaST2/plugin/lib*.so.*
 /usr/share/YaST2/scrconf/*.scr
 %doc %{prefix}/share/doc/packages/yast2-dbus-client

++++++ yast2-dbus-client-2.18.0.tar.bz2 -> yast2-dbus-client-2.21.0.tar.bz2 
++++++
++++ 12036 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-dbus-client-2.18.0/VERSION new/yast2-dbus-client-2.21.0/VERSION
--- old/yast2-dbus-client-2.18.0/VERSION        2009-08-03 09:53:49.000000000 
+0200
+++ new/yast2-dbus-client-2.21.0/VERSION        2011-05-31 16:03:52.000000000 
+0200
@@ -1 +1 @@
-2.18.0
+2.21.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-dbus-client-2.18.0/agent-dbus/src/DbusAgent.cc 
new/yast2-dbus-client-2.21.0/agent-dbus/src/DbusAgent.cc
--- old/yast2-dbus-client-2.18.0/agent-dbus/src/DbusAgent.cc    2009-08-03 
09:53:49.000000000 +0200
+++ new/yast2-dbus-client-2.21.0/agent-dbus/src/DbusAgent.cc    2011-05-31 
16:01:49.000000000 +0200
@@ -135,7 +135,7 @@
 
            if (tmp3->isString())
            {
-               const char* param = tmp3->asString()->value_cstr();
+               const char* const param = tmp3->asString()->value_cstr();
                if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, 
&param))
                {
                    dbus_message_unref(message);
@@ -144,7 +144,7 @@
            }
            else if (tmp3->isBoolean())
            {
-               bool param = tmp3->asBoolean()->value();
+               dbus_bool_t param = tmp3->asBoolean()->value() ? TRUE : FALSE;
                if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, 
&param))
                {
                    dbus_message_unref(message);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-dbus-client-2.18.0/config.h.in 
new/yast2-dbus-client-2.21.0/config.h.in
--- old/yast2-dbus-client-2.18.0/config.h.in    2009-08-03 10:23:33.000000000 
+0200
+++ new/yast2-dbus-client-2.21.0/config.h.in    2011-05-31 16:06:54.000000000 
+0200
@@ -64,6 +64,9 @@
 /* Define to the one symbol short name of this package. */
 #undef PACKAGE_TARNAME
 
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
 /* Define to the version of this package. */
 #undef PACKAGE_VERSION
 
@@ -80,3 +83,6 @@
 
 /* Version number of package */
 #undef VERSION
+
+/* Define to `unsigned int' if <sys/types.h> does not define. */
+#undef size_t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-dbus-client-2.18.0/configure.in 
new/yast2-dbus-client-2.21.0/configure.in
--- old/yast2-dbus-client-2.18.0/configure.in   2009-08-03 10:23:17.000000000 
+0200
+++ new/yast2-dbus-client-2.21.0/configure.in   2011-05-31 16:06:45.000000000 
+0200
@@ -1,9 +1,9 @@
 dnl configure.in for yast2-dbus-client
 dnl
-dnl -- This file is generated by y2autoconf 2.18.9 - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.18.11 - DO NOT EDIT! --
 dnl    (edit configure.in.in instead)
 
-AC_INIT(yast2-dbus-client, 2.18.0, http://bugs.opensuse.org/, 
yast2-dbus-client)
+AC_INIT(yast2-dbus-client, 2.21.0, http://bugs.opensuse.org/, 
yast2-dbus-client)
 dnl Check for presence of file 'RPMNAME'
 AC_CONFIG_SRCDIR([RPMNAME])
 
@@ -18,7 +18,7 @@
 AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)
 
 dnl Important YaST2 variables
-VERSION="2.18.0"
+VERSION="2.21.0"
 RPMNAME="yast2-dbus-client"
 MAINTAINER="Arvin Schnell <aschn...@suse.de>"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-dbus-client-2.18.0/libtool.m4 new/yast2-dbus-client-2.21.0/libtool.m4
--- old/yast2-dbus-client-2.18.0/libtool.m4     2009-08-03 10:23:25.000000000 
+0200
+++ new/yast2-dbus-client-2.21.0/libtool.m4     2011-05-31 16:06:49.000000000 
+0200
@@ -684,7 +684,6 @@
 
 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building 
support services.
 # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
 #
 _LT_COPYING
@@ -1021,7 +1020,7 @@
 # to the aix ld manual.
 m4_defun([_LT_SYS_MODULE_PATH_AIX],
 [m4_require([_LT_DECL_SED])dnl
-AC_LINK_IFELSE(AC_LANG_PROGRAM,[
+AC_LINK_IFELSE([AC_LANG_PROGRAM],[
 lt_aix_libpath_sed='
     /Import File Strings/,/^$/ {
        /^0/ {
@@ -4826,9 +4825,18 @@
        # implicitly export all symbols.
         save_LDFLAGS="$LDFLAGS"
         LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo 
${wl}-update_registry ${wl}/dev/null"
-        AC_LINK_IFELSE(int foo(void) {},
+        AC_LINK_IFELSE(
+          [AC_LANG_SOURCE(
+            [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
+                          [C++], [[int foo (void) { return 0; }]],
+                          [Fortran 77], [[
+       subroutine foo
+       end]],
+                          [Fortran], [[
+       subroutine foo
+       end]])])], [
           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs 
$compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO 
"X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry 
${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o 
$lib'
-        )
+        ])
         LDFLAGS="$save_LDFLAGS"
       else
        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs 
$compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version 
$verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/yast2-dbus-client-2.18.0/ltversion.m4 
new/yast2-dbus-client-2.21.0/ltversion.m4
--- old/yast2-dbus-client-2.18.0/ltversion.m4   2009-08-03 10:23:25.000000000 
+0200
+++ new/yast2-dbus-client-2.21.0/ltversion.m4   2011-05-31 16:06:50.000000000 
+0200
@@ -9,15 +9,15 @@
 
 # Generated from ltversion.in.
 
-# serial 3012 ltversion.m4
+# serial 3018 ltversion.m4
 # This file is part of GNU Libtool
 
-m4_define([LT_PACKAGE_VERSION], [2.2.6])
-m4_define([LT_PACKAGE_REVISION], [1.3012])
+m4_define([LT_PACKAGE_VERSION], [2.2.6b])
+m4_define([LT_PACKAGE_REVISION], [1.3018])
 
 AC_DEFUN([LTVERSION_VERSION],
-[macro_version='2.2.6'
-macro_revision='1.3012'
+[macro_version='2.2.6b'
+macro_revision='1.3018'
 _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
 _LT_DECL(, macro_revision, 0)
 ])


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to