Hello community, here is the log from the commit of package e_dbus for openSUSE:Factory checked in at 2013-04-17 23:02:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/e_dbus (Old) and /work/SRC/openSUSE:Factory/.e_dbus.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "e_dbus", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/e_dbus/e_dbus.changes 2013-01-12 07:51:13.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.e_dbus.new/e_dbus.changes 2013-04-17 23:03:02.000000000 +0200 @@ -1,0 +2,13 @@ +Fri Apr 5 23:45:39 UTC 2013 - [email protected] + +- Update to 1.7.6 + non void return patch is included and hence removed from here + Changelog: +Daniel Juyung Seo (1): + e_dbus-1.7.5: Fixed missing returns. Patch by Tomas Cech <[email protected]> + +Rafael Antognolli (2): + Bump stable efl to 1.7.6. + Update changelog for 1.7.6 release. + +------------------------------------------------------------------- Old: ---- e_dbus-1.7.5.tar.bz2 non-void-return.patch New: ---- e_dbus-1.7.6.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ e_dbus.spec ++++++ --- /var/tmp/diff_new_pack.3Hnhrt/_old 2013-04-17 23:03:06.000000000 +0200 +++ /var/tmp/diff_new_pack.3Hnhrt/_new 2013-04-17 23:03:06.000000000 +0200 @@ -17,15 +17,13 @@ Name: e_dbus -Version: 1.7.5 +Version: 1.7.6 Release: 0 Summary: Dbus wrapping and glue layer library License: BSD-2-Clause Group: System/Libraries Url: http://enlightenment.org/ Source: %{name}-%{version}.tar.bz2 -# PATCH-FIX-UPSTREAM non-void-return.patch [email protected] -- fixes the build -Patch0: non-void-return.patch BuildRequires: dbus-1-devel BuildRequires: doxygen BuildRequires: ecore-devel >= %{version} @@ -70,7 +68,6 @@ %prep %setup -q -%patch0 -p1 %build # fake time used for documentation ++++++ e_dbus-1.7.5.tar.bz2 -> e_dbus-1.7.6.tar.bz2 ++++++ ++++ 2756 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/e_dbus-1.7.5/ChangeLog new/e_dbus-1.7.6/ChangeLog --- old/e_dbus-1.7.5/ChangeLog 2013-01-04 13:05:57.000000000 +0100 +++ new/e_dbus-1.7.6/ChangeLog 2013-04-04 22:49:46.000000000 +0200 @@ -113,3 +113,11 @@ 2013-01-04 Luis Felipe Strano Moraes * 1.7.5 release + +2013-01-06 Tomas Cech + + * Fix missing returns. + +2013-04-04 Rafael Antognolli + + * 1.7.6 release 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/e_dbus-1.7.5/NEWS new/e_dbus-1.7.6/NEWS --- old/e_dbus-1.7.5/NEWS 2013-01-04 13:05:04.000000000 +0100 +++ new/e_dbus-1.7.6/NEWS 2013-04-04 21:42:04.000000000 +0200 @@ -1,5 +1,12 @@ E_dbus 1.7.5 +Changes since E_dbus 1.7.5: +--------------------------- + +Fixes: + + * Fix missing returns. + Changes since E_dbus 1.7.4: --------------------------- 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/e_dbus-1.7.5/compile new/e_dbus-1.7.6/compile --- old/e_dbus-1.7.5/compile 2012-12-19 15:59:42.000000000 +0100 +++ new/e_dbus-1.7.6/compile 2013-04-04 23:13:20.000000000 +0200 @@ -1,7 +1,7 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2012-01-04.17; # UTC +scriptversion=2012-03-05.13; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free # Software Foundation, Inc. @@ -79,6 +79,48 @@ esac } +# func_cl_dashL linkdir +# Make cl look for libraries in LINKDIR +func_cl_dashL () +{ + func_file_conv "$1" + if test -z "$lib_path"; then + lib_path=$file + else + lib_path="$lib_path;$file" + fi + linker_opts="$linker_opts -LIBPATH:$file" +} + +# func_cl_dashl library +# Do a library search-path lookup for cl +func_cl_dashl () +{ + lib=$1 + found=no + save_IFS=$IFS + IFS=';' + for dir in $lib_path $LIB + do + IFS=$save_IFS + if $shared && test -f "$dir/$lib.dll.lib"; then + found=yes + lib=$dir/$lib.dll.lib + break + fi + if test -f "$dir/$lib.lib"; then + found=yes + lib=$dir/$lib.lib + break + fi + done + IFS=$save_IFS + + if test "$found" != yes; then + lib=$lib.lib + fi +} + # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () @@ -109,43 +151,34 @@ ;; esac ;; + -I) + eat=1 + func_file_conv "$2" mingw + set x "$@" -I"$file" + shift + ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; + -l) + eat=1 + func_cl_dashl "$2" + set x "$@" "$lib" + shift + ;; -l*) - lib=${1#-l} - found=no - save_IFS=$IFS - IFS=';' - for dir in $lib_path $LIB - do - IFS=$save_IFS - if $shared && test -f "$dir/$lib.dll.lib"; then - found=yes - set x "$@" "$dir/$lib.dll.lib" - break - fi - if test -f "$dir/$lib.lib"; then - found=yes - set x "$@" "$dir/$lib.lib" - break - fi - done - IFS=$save_IFS - - test "$found" != yes && set x "$@" "$lib.lib" + func_cl_dashl "${1#-l}" + set x "$@" "$lib" shift ;; + -L) + eat=1 + func_cl_dashL "$2" + ;; -L*) - func_file_conv "${1#-L}" - if test -z "$lib_path"; then - lib_path=$file - else - lib_path="$lib_path;$file" - fi - linker_opts="$linker_opts -LIBPATH:$file" + func_cl_dashL "${1#-L}" ;; -static) shared=false 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/e_dbus-1.7.5/configure.ac new/e_dbus-1.7.6/configure.ac --- old/e_dbus-1.7.5/configure.ac 2013-01-04 15:07:28.000000000 +0100 +++ new/e_dbus-1.7.6/configure.ac 2013-04-04 21:59:40.000000000 +0200 @@ -2,7 +2,7 @@ ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## m4_define([v_maj], [1]) m4_define([v_min], [7]) -m4_define([v_mic], [5]) +m4_define([v_mic], [6]) m4_define([v_rev], m4_esyscmd([(svnversion "${SVN_REPO_PATH:-.}" | grep -v '\(export\|Unversioned directory\)' || echo 0) | awk -F : '{printf("%s\n", $1);}' | tr -d ' :MSP\n'])) m4_if(v_rev, [0], [m4_define([v_rev], m4_esyscmd([git log 2> /dev/null | (grep -m1 git-svn-id || echo 0) | sed -e 's/.*@\([0-9]*\).*/\1/' | tr -d '\n']))]) ##-- When released, remove the dnl on the below line @@ -81,13 +81,13 @@ ;; esac -requirement_ebluez="edbus >= 1.7.5" -requirement_econnman0_7x="edbus >= 1.7.5" -requirement_edbus="ecore >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62" -requirement_ehal="edbus >= 1.7.5" -requirement_enotify="edbus >= 1.7.5" -requirement_eofono="edbus >= 1.7.5" -requirement_eukit="edbus >= 1.7.5" +requirement_ebluez="edbus >= 1.7.6" +requirement_econnman0_7x="edbus >= 1.7.6" +requirement_edbus="ecore >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62" +requirement_ehal="edbus >= 1.7.6" +requirement_enotify="edbus >= 1.7.6" +requirement_eofono="edbus >= 1.7.6" +requirement_eukit="edbus >= 1.7.6" ### Additional options to configure @@ -149,9 +149,9 @@ case "$host_os" in mingw*) - PKG_CHECK_EXISTS([evil >= 1.7.5]) + PKG_CHECK_EXISTS([evil >= 1.7.6]) AC_DEFINE([HAVE_EVIL], [1], [Set to 1 if Evil package is installed]) - requirement_edbus="${requirement_edbus} evil >= 1.7.5" + requirement_edbus="${requirement_edbus} evil >= 1.7.6" ;; esac @@ -185,8 +185,8 @@ # Dependencies for the libraries if test "x${enable_enotify}" = "xyes" ; then PKG_CHECK_MODULES([EVAS], - [evas >= 1.7.5], - [requirement_enotify="evas >= 1.7.5 ${requirement_enotify}"], + [evas >= 1.7.6], + [requirement_enotify="evas >= 1.7.6 ${requirement_enotify}"], [enable_enotify="no"]) fi @@ -213,70 +213,70 @@ if test "x${have_edbus_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_TEST], - [ecore >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 dbus-1 >= 0.62], [have_edbus_test="yes"], [have_edbus_test="no"]) fi if test "x${have_edbus_test_client}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_TEST_CLIENT], - [ecore >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 dbus-1 >= 0.62], [have_edbus_test_client="yes"], [have_edbus_test_client="no"]) fi if test "x${have_edbus_bluez_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_BLUEZ_TEST], - [ecore >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62], [have_edbus_bluez_test="yes"], [have_edbus_bluez_test="no"]) fi if test "x${have_edbus_connman0_7x_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_CONNMAN0_7X_TEST], - [ecore >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62], [have_edbus_connman0_7x_test="yes"], [have_edbus_connman0_7x_test="no"]) fi if test "x${have_edbus_notification_daemon_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_NOTIFICATION_DAEMON_TEST], - [ecore >= 1.7.5 evas >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 evas >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62], [have_edbus_notification_daemon_test="yes"], [have_edbus_notification_daemon_test="no"]) fi if test "x${have_edbus_notify_send}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_NOTIFY_SEND], - [ecore >= 1.7.5 evas >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 evas >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62], [have_edbus_notify_send="yes"], [have_edbus_notify_send="no"]) fi if test "x${have_edbus_notify_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_NOTIFY_TEST], - [ecore >= 1.7.5 ecore-evas >= 1.7.5 evas >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 ecore-evas >= 1.7.6 evas >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62], [have_edbus_notify_test="yes"], [have_edbus_notify_test="no"]) fi if test "x${have_edbus_ofono_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_OFONO_TEST], - [ecore >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62], [have_edbus_ofono_test="yes"], [have_edbus_ofono_test="no"]) fi if test "x${have_edbus_ukit_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_UKIT_TEST], - [ecore >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62], [have_edbus_ukit_test="yes"], [have_edbus_ukit_test="no"]) fi if test "x${have_edbus_performance_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_PERFORMANCE_TEST], - [ecore >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62 ecore-evas >= 1.7.5 elementary >= 1.7.5 evas >= 1.7.5], + [ecore >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62 ecore-evas >= 1.7.6 elementary >= 1.7.6 evas >= 1.7.6], [have_edbus_performance_test="yes"], [have_edbus_performance_test="no"]) fi @@ -285,7 +285,7 @@ if test "x${have_edbus_async_test}" = "xyes" ; then PKG_CHECK_MODULES([EDBUS_ASYNC_TEST], - [ecore >= 1.7.5 dbus-1 >= 0.62], + [ecore >= 1.7.6 dbus-1 >= 0.62], [have_edbus_async_test="yes"], [have_edbus_async_test="no"]) fi 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/e_dbus-1.7.5/e_dbus.spec new/e_dbus-1.7.6/e_dbus.spec --- old/e_dbus-1.7.5/e_dbus.spec 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/e_dbus.spec 2013-04-05 00:36:12.000000000 +0200 @@ -4,7 +4,7 @@ Summary: EFL Wrapper for DBus Name: e_dbus -Version: 1.7.5 +Version: 1.7.6 Release: %{_rel} License: BSD Group: System Environment/Libraries 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/e_dbus-1.7.5/ebluez.pc new/e_dbus-1.7.6/ebluez.pc --- old/e_dbus-1.7.5/ebluez.pc 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/ebluez.pc 2013-04-05 00:36:12.000000000 +0200 @@ -1,11 +1,11 @@ -prefix=/home/lfelipe/e-release/release/local +prefix=/home/antognolli/efl/1.7/git-release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: ebluez Description: bluetooth device manager (bluez) -Requires.private: edbus >= 1.7.5 -Version: 1.7.5 +Requires.private: edbus >= 1.7.6 +Version: 1.7.6 Libs: -L${libdir} -lebluez Cflags: -I${includedir}/e_dbus-1 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/e_dbus-1.7.5/econnman-0.7x.pc new/e_dbus-1.7.6/econnman-0.7x.pc --- old/e_dbus-1.7.5/econnman-0.7x.pc 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/econnman-0.7x.pc 2013-04-05 00:36:12.000000000 +0200 @@ -1,11 +1,11 @@ -prefix=/home/lfelipe/e-release/release/local +prefix=/home/antognolli/efl/1.7/git-release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: econnman-0.7x Description: network connection manager (connman v0.7x) -Requires.private: edbus >= 1.7.5 -Version: 1.7.5 +Requires.private: edbus >= 1.7.6 +Version: 1.7.6 Libs: -L${libdir} -leconnman0_7x Cflags: -I${includedir}/e_dbus-1 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/e_dbus-1.7.5/edbus.pc new/e_dbus-1.7.6/edbus.pc --- old/e_dbus-1.7.5/edbus.pc 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/edbus.pc 2013-04-05 00:36:12.000000000 +0200 @@ -1,5 +1,5 @@ PACKAGE_TARNAME=e_dbus -prefix=/home/lfelipe/e-release/release/local +prefix=/home/antognolli/efl/1.7/git-release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include @@ -7,7 +7,7 @@ Name: edbus Description: DBus convenience library -Requires.private: ecore >= 1.7.5 eina >= 1.7.5 dbus-1 >= 0.62 -Version: 1.7.5 -Libs: -L${libdir} -ledbus -ldbus-1 -lpthread -lrt +Requires.private: ecore >= 1.7.6 eina >= 1.7.6 dbus-1 >= 0.62 +Version: 1.7.6 +Libs: -L${libdir} -ledbus -L/lib64 -ldbus-1 -lpthread -lrt Cflags: -I${includedir}/e_dbus-1 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/e_dbus-1.7.5/ehal.pc new/e_dbus-1.7.6/ehal.pc --- old/e_dbus-1.7.5/ehal.pc 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/ehal.pc 2013-04-05 00:36:12.000000000 +0200 @@ -1,11 +1,11 @@ -prefix=/home/lfelipe/e-release/release/local +prefix=/home/antognolli/efl/1.7/git-release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: ehal Description: Hal convenience library -Requires.private: edbus >= 1.7.5 -Version: 1.7.5 +Requires.private: edbus >= 1.7.6 +Version: 1.7.6 Libs: -L${libdir} -lehal Cflags: -I${includedir}/e_dbus-1 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/e_dbus-1.7.5/enotify.pc new/e_dbus-1.7.6/enotify.pc --- old/e_dbus-1.7.5/enotify.pc 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/enotify.pc 2013-04-05 00:36:12.000000000 +0200 @@ -1,11 +1,11 @@ -prefix=/home/lfelipe/e-release/release/local +prefix=/home/antognolli/efl/1.7/git-release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: enotify Description: Notification convenience library -Requires.private: evas >= 1.7.5 edbus >= 1.7.5 -Version: 1.7.5 +Requires.private: evas >= 1.7.6 edbus >= 1.7.6 +Version: 1.7.6 Libs: -L${libdir} -lenotify Cflags: -I${includedir}/e_dbus-1 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/e_dbus-1.7.5/eofono.pc new/e_dbus-1.7.6/eofono.pc --- old/e_dbus-1.7.5/eofono.pc 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/eofono.pc 2013-04-05 00:36:12.000000000 +0200 @@ -1,11 +1,11 @@ -prefix=/home/lfelipe/e-release/release/local +prefix=/home/antognolli/efl/1.7/git-release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: eofono Description: oFono D-Bus wrappers -Requires.private: edbus >= 1.7.5 -Version: 1.7.5 +Requires.private: edbus >= 1.7.6 +Version: 1.7.6 Libs: -L${libdir} -leofono Cflags: -I${includedir}/e_dbus-1 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/e_dbus-1.7.5/eukit.pc new/e_dbus-1.7.6/eukit.pc --- old/e_dbus-1.7.5/eukit.pc 2013-01-04 15:24:32.000000000 +0100 +++ new/e_dbus-1.7.6/eukit.pc 2013-04-05 00:36:12.000000000 +0200 @@ -1,11 +1,11 @@ -prefix=/home/lfelipe/e-release/release/local +prefix=/home/antognolli/efl/1.7/git-release/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: eukit Description: udisks/upower convenience library -Requires.private: edbus >= 1.7.5 -Version: 1.7.5 +Requires.private: edbus >= 1.7.6 +Version: 1.7.6 Libs: -L${libdir} -leukit Cflags: -I${includedir}/e_dbus-1 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/e_dbus-1.7.5/m4/libtool.m4 new/e_dbus-1.7.6/m4/libtool.m4 --- old/e_dbus-1.7.5/m4/libtool.m4 2012-12-19 15:59:41.000000000 +0100 +++ new/e_dbus-1.7.6/m4/libtool.m4 2013-04-04 23:13:19.000000000 +0200 @@ -2669,10 +2669,14 @@ # before this can be enabled. hardcode_into_libs=yes + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + fi # We used to test for /lib/ld.so.1 and disable shared libraries on @@ -2684,18 +2688,6 @@ dynamic_linker='GNU/Linux ld.so' ;; -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - netbsd*) version_type=sunos need_lib_prefix=no @@ -3301,7 +3293,7 @@ lt_cv_deplibs_check_method=pass_all ;; -netbsd* | netbsdelf*-gnu) +netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else @@ -4113,7 +4105,7 @@ ;; esac ;; - netbsd* | netbsdelf*-gnu) + netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise @@ -4590,9 +4582,6 @@ ;; esac ;; - linux* | k*bsd*-gnu | gnu*) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; @@ -4655,9 +4644,6 @@ openbsd*) with_gnu_ld=no ;; - linux* | k*bsd*-gnu | gnu*) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes @@ -4879,7 +4865,7 @@ fi ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= @@ -5056,7 +5042,6 @@ if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi - _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then @@ -5361,7 +5346,7 @@ _LT_TAGVAR(link_all_deplibs, $1)=yes ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else 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/e_dbus-1.7.5/src/lib/connman0_7x/e_connman_element.c new/e_dbus-1.7.6/src/lib/connman0_7x/e_connman_element.c --- old/e_dbus-1.7.5/src/lib/connman0_7x/e_connman_element.c 2013-01-04 13:05:04.000000000 +0100 +++ new/e_dbus-1.7.6/src/lib/connman0_7x/e_connman_element.c 2013-04-04 21:42:04.000000000 +0200 @@ -1378,7 +1378,7 @@ Eina_Bool e_connman_element_sync_properties_full(E_Connman_Element *element, E_DBus_Method_Return_Cb cb, const void *data) { - e_connman_element_properties_sync_full(element, cb, data); + return e_connman_element_properties_sync_full(element, cb, data); } /** 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/e_dbus-1.7.5/src/lib/ofono/e_ofono_element.c new/e_dbus-1.7.6/src/lib/ofono/e_ofono_element.c --- old/e_dbus-1.7.5/src/lib/ofono/e_ofono_element.c 2013-01-04 13:05:03.000000000 +0100 +++ new/e_dbus-1.7.6/src/lib/ofono/e_ofono_element.c 2013-04-04 21:42:04.000000000 +0200 @@ -1458,7 +1458,7 @@ Eina_Bool e_ofono_element_sync_properties_full(E_Ofono_Element *element, E_DBus_Method_Return_Cb cb, const void *data) { - e_ofono_element_properties_sync_full(element, cb, data); + return e_ofono_element_properties_sync_full(element, cb, data); } /** -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
