Hello community,

here is the log from the commit of package embryo for openSUSE:Factory checked 
in at 2013-04-17 23:04:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/embryo (Old)
 and      /work/SRC/openSUSE:Factory/.embryo.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "embryo", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/embryo/embryo.changes    2013-01-10 
10:52:58.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.embryo.new/embryo.changes       2013-04-17 
23:04:08.000000000 +0200
@@ -1,0 +2,27 @@
+Tue Apr 16 22:48:52 UTC 2013 - [email protected]
+
+- removing man page documentation completely
+
+-------------------------------------------------------------------
+Tue Apr  9 14:03:00 UTC 2013 - [email protected]
+
+- build manpages for every project again, but try to filter
+  unimportant files
+
+-------------------------------------------------------------------
+Mon Apr  8 12:20:02 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:09:28 UTC 2013 - [email protected]
+
+- update to 1.7.6
+       Changelog:
+Tom Hacohen (1):
+      Fix revision fetching when not using git.
+
+-------------------------------------------------------------------

Old:
----
  embryo-1.7.5.tar.bz2

New:
----
  embryo-1.7.6.tar.bz2

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

Other differences:
------------------
++++++ embryo.spec ++++++
--- /var/tmp/diff_new_pack.PxflJA/_old  2013-04-17 23:04:11.000000000 +0200
+++ /var/tmp/diff_new_pack.PxflJA/_new  2013-04-17 23:04:11.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           embryo
-Version:        1.7.5
+Version:        1.7.6
 Release:        0
 Summary:        Small Pawn based virtual machine and compiler
 License:        BSD-2-Clause and Zlib
@@ -62,13 +62,6 @@
 %description doc-html
 Documentation of Eet library in form of HTML pages.
 
-%package doc-man
-Summary:        Man documentation of Embryo
-Group:          Documentation/Man
-
-%description doc-man
-Documentation of Eina library in form of man pages.
-
 %prep
 %setup -q
 
@@ -90,15 +83,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 {} \;
@@ -128,8 +119,4 @@
 %defattr(-, root, root)
 %{_docdir}/%{name}
 
-%files doc-man
-%defattr(-, root, root)
-%{_mandir}/*/*
-
 %changelog

++++++ embryo-1.7.5.tar.bz2 -> embryo-1.7.6.tar.bz2 ++++++
++++ 1632 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/embryo-1.7.5/ChangeLog new/embryo-1.7.6/ChangeLog
--- old/embryo-1.7.5/ChangeLog  2013-01-04 14:53:02.000000000 +0100
+++ new/embryo-1.7.6/ChangeLog  2013-04-04 22:49:46.000000000 +0200
@@ -74,3 +74,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/embryo-1.7.5/compile new/embryo-1.7.6/compile
--- old/embryo-1.7.5/compile    2012-12-19 15:56:37.000000000 +0100
+++ new/embryo-1.7.6/compile    2013-04-04 22:21:27.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/embryo-1.7.5/configure.ac new/embryo-1.7.6/configure.ac
--- old/embryo-1.7.5/configure.ac       2013-01-04 15:07:28.000000000 +0100
+++ new/embryo-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])
 ##--   When doing snapshots - change soname. remove dnl on below line
@@ -98,7 +97,7 @@
 EFL_EMBRYO_BUILD=""
 case "$host_os" in
    mingw*)
-   PKG_CHECK_MODULES([EVIL], [evil >= 1.7.5])
+   PKG_CHECK_MODULES([EVIL], [evil >= 1.7.6])
    AC_DEFINE(HAVE_EVIL, 1, [Set to 1 if Evil library is installed])
    requirement_embryo="evil ${requirement_embryo}"
    EFL_EMBRYO_BUILD="-DEFL_EMBRYO_BUILD"
@@ -107,7 +106,7 @@
 AC_SUBST(EFL_EMBRYO_BUILD)
 
 # For embryo_cc_prefix.c
-PKG_CHECK_MODULES([EINA], [eina >= 1.7.5])
+PKG_CHECK_MODULES([EINA], [eina >= 1.7.6])
 
 ### Checks for portability layer
 
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/embryo-1.7.5/embryo.spec new/embryo-1.7.6/embryo.spec
--- old/embryo-1.7.5/embryo.spec        2013-01-04 15:21:39.000000000 +0100
+++ new/embryo-1.7.6/embryo.spec        2013-04-05 00:30:54.000000000 +0200
@@ -4,7 +4,7 @@
 
 Summary: A small virtual machine engine (in a library) and bytecode compiler
 Name: embryo
-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/embryo-1.7.5/m4/libtool.m4 new/embryo-1.7.6/m4/libtool.m4
--- old/embryo-1.7.5/m4/libtool.m4      2012-12-19 15:56:37.000000000 +0100
+++ new/embryo-1.7.6/m4/libtool.m4      2013-04-04 22:21:26.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/embryo-1.7.5/src/bin/embryo_cc_amx.h 
new/embryo-1.7.6/src/bin/embryo_cc_amx.h
--- old/embryo-1.7.5/src/bin/embryo_cc_amx.h    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_amx.h    2013-04-04 21:42:04.000000000 
+0200
@@ -18,7 +18,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_amx.h 51650 2010-08-26 01:34:13Z lucas $
+ *  Version: $Id$
  */
 
 #ifndef EMBRYO_CC_AMX_H
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/embryo-1.7.5/src/bin/embryo_cc_sc.h new/embryo-1.7.6/src/bin/embryo_cc_sc.h
--- old/embryo-1.7.5/src/bin/embryo_cc_sc.h     2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc.h     2013-04-04 21:42:04.000000000 
+0200
@@ -9,7 +9,7 @@
  *  Copyright J.E. Hendrix, 1982, 1983
  *  Copyright T. Riemersma, 1997-2003
  *
- *  Version: $Id: embryo_cc_sc.h 76492 2012-09-12 07:04:49Z raster $
+ *  Version: $Id$
  *
  *  This software is provided "as-is", without any express or implied warranty.
  *  In no event will the authors be held liable for any damages arising from
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/embryo-1.7.5/src/bin/embryo_cc_sc1.c 
new/embryo-1.7.6/src/bin/embryo_cc_sc1.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sc1.c    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc1.c    2013-04-04 21:42:04.000000000 
+0200
@@ -18,7 +18,7 @@
  *  must not be misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source
  *  distribution.
- *  Version: $Id: embryo_cc_sc1.c 76492 2012-09-12 07:04:49Z raster $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_sc2.c 
new/embryo-1.7.6/src/bin/embryo_cc_sc2.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sc2.c    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc2.c    2013-04-04 21:42:04.000000000 
+0200
@@ -18,7 +18,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc2.c 76492 2012-09-12 07:04:49Z raster $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_sc3.c 
new/embryo-1.7.6/src/bin/embryo_cc_sc3.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sc3.c    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc3.c    2013-04-04 21:42:04.000000000 
+0200
@@ -18,7 +18,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc3.c 52451 2010-09-19 03:00:12Z raster $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_sc4.c 
new/embryo-1.7.6/src/bin/embryo_cc_sc4.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sc4.c    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc4.c    2013-04-04 21:42:04.000000000 
+0200
@@ -18,7 +18,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc4.c 52451 2010-09-19 03:00:12Z raster $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_sc5.c 
new/embryo-1.7.6/src/bin/embryo_cc_sc5.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sc5.c    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc5.c    2013-04-04 21:42:04.000000000 
+0200
@@ -19,7 +19,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc5.c 61433 2011-07-16 23:19:02Z caro $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_sc5.scp 
new/embryo-1.7.6/src/bin/embryo_cc_sc5.scp
--- old/embryo-1.7.5/src/bin/embryo_cc_sc5.scp  2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc5.scp  2013-04-04 21:42:04.000000000 
+0200
@@ -18,7 +18,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc5.scp 14177 2005-04-13 19:37:01Z tsauerbeck $
+ *  Version: $Id$
  */
 
 int         strexpand(char *dest, unsigned char *source, int maxlen,
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/embryo-1.7.5/src/bin/embryo_cc_sc6.c 
new/embryo-1.7.6/src/bin/embryo_cc_sc6.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sc6.c    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc6.c    2013-04-04 21:42:04.000000000 
+0200
@@ -18,7 +18,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc6.c 76492 2012-09-12 07:04:49Z raster $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_sc7.c 
new/embryo-1.7.6/src/bin/embryo_cc_sc7.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sc7.c    2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc7.c    2013-04-04 21:42:04.000000000 
+0200
@@ -35,7 +35,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc7.c 76492 2012-09-12 07:04:49Z raster $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_sc7.scp 
new/embryo-1.7.6/src/bin/embryo_cc_sc7.scp
--- old/embryo-1.7.5/src/bin/embryo_cc_sc7.scp  2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sc7.scp  2013-04-04 21:42:04.000000000 
+0200
@@ -19,7 +19,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sc7.scp 14177 2005-04-13 19:37:01Z tsauerbeck $
+ *  Version: $Id$
  */
 
 int         strexpand(char *dest, unsigned char *source, int maxlen,
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/embryo-1.7.5/src/bin/embryo_cc_sclist.c 
new/embryo-1.7.6/src/bin/embryo_cc_sclist.c
--- old/embryo-1.7.5/src/bin/embryo_cc_sclist.c 2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_sclist.c 2013-04-04 21:42:04.000000000 
+0200
@@ -21,7 +21,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_sclist.c 52451 2010-09-19 03:00:12Z raster $
+ *  Version: $Id$
  */
 
 
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/embryo-1.7.5/src/bin/embryo_cc_scvars.c 
new/embryo-1.7.6/src/bin/embryo_cc_scvars.c
--- old/embryo-1.7.5/src/bin/embryo_cc_scvars.c 2012-12-19 15:40:21.000000000 
+0100
+++ new/embryo-1.7.6/src/bin/embryo_cc_scvars.c 2013-04-04 21:42:04.000000000 
+0200
@@ -20,7 +20,7 @@
  *      misrepresented as being the original software.
  *  3.  This notice may not be removed or altered from any source distribution.
  *
- *  Version: $Id: embryo_cc_scvars.c 50816 2010-08-04 16:57:32Z lucas $
+ *  Version: $Id$
  */
 
 

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to