Hello community, here is the log from the commit of package eeze for openSUSE:Factory checked in at 2013-04-17 23:03:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/eeze (Old) and /work/SRC/openSUSE:Factory/.eeze.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "eeze", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/eeze/eeze.changes 2013-01-10 10:51:50.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.eeze.new/eeze.changes 2013-04-17 23:03:26.000000000 +0200 @@ -1,0 +2,30 @@ +Tue Apr 16 13:39:56 UTC 2013 - [email protected] + +- remove manpages completely + +------------------------------------------------------------------- +Tue Apr 9 14:36:01 UTC 2013 - [email protected] + +- improve manpage filter + +------------------------------------------------------------------- +Tue Apr 9 13:53:30 UTC 2013 - [email protected] + +- build manpages for every project again, but try to filter + unimportant files + +------------------------------------------------------------------- +Mon Apr 8 12:08:28 UTC 2013 - [email protected] + +- disable man page generation for now as it collides with man pages + of boost package + you can still enable that easily in spec and rebuilt it locally + or take it from X11:Enlightenment:Factory + +------------------------------------------------------------------- +Fri Apr 5 23:57:54 UTC 2013 - [email protected] + +- update to 1.7.6 + no changes, just keeping version in sync + +------------------------------------------------------------------- Old: ---- eeze-1.7.5.tar.bz2 New: ---- eeze-1.7.6.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ eeze.spec ++++++ --- /var/tmp/diff_new_pack.n0090J/_old 2013-04-17 23:03:29.000000000 +0200 +++ /var/tmp/diff_new_pack.n0090J/_new 2013-04-17 23:03:29.000000000 +0200 @@ -17,13 +17,13 @@ Name: eeze -Version: 1.7.5 +Version: 1.7.6 Release: 0 Summary: Device abstraction library License: BSD-2-Clause Group: System/Libraries Url: http://enlightenment.org -Source: eeze-%{version}.tar.bz2 +Source: %{name}-%{version}.tar.bz2 BuildRequires: doxygen BuildRequires: ecore-devel >= %version BuildRequires: eina-devel >= %version @@ -79,13 +79,6 @@ %description doc-html Documentation of Eet library in form of HTML pages. -%package doc-man -Summary: Man documentation of Eeze -Group: Documentation/Man - -%description doc-man -Documentation of Eeze library in form of man pages. - %prep %setup -q @@ -107,15 +100,13 @@ echo "Copying HTML documentation" mkdir -p %{buildroot}%{_docdir}/%{name} /bin/cp -vr doc/html %{buildroot}%{_docdir}/%{name} -echo "Copying MAN pages" -/bin/cp -vr doc/man/ %{buildroot}%{_mandir}/ + # fix permissions find %{buildroot}%{_docdir} -type f | xargs chmod 0644 find %{buildroot}%{_docdir} -type d | xargs chmod 0755 # remove duplicates %if 0%{?suse_version} %fdupes -s %{buildroot}%{_docdir} -%fdupes -s %{buildroot}%{_mandir} %endif find %{buildroot}%{_libdir} -name '*.la' -exec rm -v {} \; @@ -145,8 +136,4 @@ %defattr(-, root, root) %{_docdir}/%{name} -%files doc-man -%defattr(-, root, root) -%{_mandir}/*/* - %changelog ++++++ eeze-1.7.5.tar.bz2 -> eeze-1.7.6.tar.bz2 ++++++ ++++ 1605 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/eeze-1.7.5/ChangeLog new/eeze-1.7.6/ChangeLog --- old/eeze-1.7.5/ChangeLog 2013-01-04 13:17:06.000000000 +0100 +++ new/eeze-1.7.6/ChangeLog 2013-04-04 22:49:46.000000000 +0200 @@ -148,3 +148,7 @@ * 1.7.5 release + +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/eeze-1.7.5/compile new/eeze-1.7.6/compile --- old/eeze-1.7.5/compile 2012-12-19 16:00:48.000000000 +0100 +++ new/eeze-1.7.6/compile 2013-04-04 23:15: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/eeze-1.7.5/configure.ac new/eeze-1.7.6/configure.ac --- old/eeze-1.7.5/configure.ac 2013-01-04 15:07:28.000000000 +0100 +++ new/eeze-1.7.6/configure.ac 2013-04-04 21:59:40.000000000 +0200 @@ -2,9 +2,8 @@ ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## m4_define([v_maj], [1]) m4_define([v_min], [7]) -m4_define([v_mic], [5]) -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']))]) +m4_define([v_mic], [6]) +m4_define([v_rev], m4_esyscmd([(git rev-list --count HEAD 2>/dev/null || echo 0) | tr -d '\n']))dnl ##-- When released, remove the dnl on the below line m4_undefine([v_rev]) ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## @@ -58,7 +57,7 @@ AC_CANONICAL_BUILD AC_CANONICAL_HOST -requirement_eeze="ecore >= 1.7.5 eina >= 1.7.5 libudev" +requirement_eeze="ecore >= 1.7.6 eina >= 1.7.6 libudev" ### Checks for programs @@ -111,9 +110,9 @@ AC_ARG_WITH([eject], [AS_HELP_STRING([--with-eject], [specify eject bin @<:@default=detect@:>@])], [with_eject=$withval], [with_eject="detect"]) PKG_CHECK_MODULES([LIBMOUNT], [mount >= 2.18.0]) mount_v=$(pkg-config --modversion mount) - PKG_CHECK_MODULES([ECORE_FILE], [ecore-file >= 1.7.5]) - PKG_CHECK_MODULES([EET], [eet >= 1.7.5]) - PKG_CHECK_MODULES([ECORE_CON], [ecore-con >= 1.7.5]) + PKG_CHECK_MODULES([ECORE_FILE], [ecore-file >= 1.7.6]) + PKG_CHECK_MODULES([EET], [eet >= 1.7.6]) + PKG_CHECK_MODULES([ECORE_CON], [ecore-con >= 1.7.6]) if test "x$with_mount" = "xdetect";then AC_PATH_PROG([with_mount], [mount], []) 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/eeze-1.7.5/eeze.pc new/eeze-1.7.6/eeze.pc --- old/eeze-1.7.5/eeze.pc 2013-01-04 15:25:37.000000000 +0100 +++ new/eeze-1.7.6/eeze.pc 2013-04-05 00:38:19.000000000 +0200 @@ -1,5 +1,5 @@ PACKAGE_TARNAME=eeze -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: eeze Description: device convenience library for efl -Requires.private: ecore >= 1.7.5 eina >= 1.7.5 libudev -Version: 1.7.5 +Requires.private: ecore >= 1.7.6 eina >= 1.7.6 libudev +Version: 1.7.6 Libs: -L${libdir} -leeze Cflags: -I${includedir}/eeze-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/eeze-1.7.5/eeze.spec new/eeze-1.7.6/eeze.spec --- old/eeze-1.7.5/eeze.spec 2013-01-04 15:25:37.000000000 +0100 +++ new/eeze-1.7.6/eeze.spec 2013-04-05 00:38:19.000000000 +0200 @@ -3,7 +3,7 @@ Summary: Device Convenience Library Name: eeze -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/eeze-1.7.5/m4/libtool.m4 new/eeze-1.7.6/m4/libtool.m4 --- old/eeze-1.7.5/m4/libtool.m4 2012-12-19 16:00:47.000000000 +0100 +++ new/eeze-1.7.6/m4/libtool.m4 2013-04-04 23:15: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 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
