Hello community,

here is the log from the commit of package fsvs for openSUSE:Factory checked in 
at 2015-06-24 20:58:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fsvs (Old)
 and      /work/SRC/openSUSE:Factory/.fsvs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fsvs"

Changes:
--------
--- /work/SRC/openSUSE:Factory/fsvs/fsvs.changes        2011-12-13 
11:48:51.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.fsvs.new/fsvs.changes   2015-06-24 
20:58:02.000000000 +0200
@@ -1,0 +2,17 @@
+Mon Jun 22 20:28:18 UTC 2015 - [email protected]
+
+- Update to 1.2.5:
+  * bugfix: auto-props not applied for explicitly specified entries.
+    Please note that the auto-props _only_ get applied if there are
+    _no_ properties on an entry set (yet); so, after fsvs prop-set
+    file property... the auto-props will _not_ be applied (as they
+    might overwrite the manually set properties).
+  * compilation fixes for MacOS 10.6 (1.2.4)
+  * added "password" option (1.2.4)
+  * workarounds for gcc-4.5 and gcc-4.6 regressions (1.2.4)
+  * compatibility with autoconf 2.68 (1.2.4)
+- Rebase fsvs-1.2.3-linking.patch into fsvs-1.2.5-linking.patch
+- Remove gcc46.diff (upstreamed).
+- Fix build with GCC 5: add -fgnu89-inline to CFLAGS.
+
+-------------------------------------------------------------------

Old:
----
  fsvs-1.2.3-linking.patch
  fsvs-1.2.3.tar.bz2
  gcc46.diff

New:
----
  fsvs-1.2.5-linking.patch
  fsvs-1.2.5.tar.bz2

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

Other differences:
------------------
++++++ fsvs.spec ++++++
--- /var/tmp/diff_new_pack.l8LkAY/_old  2015-06-24 20:58:03.000000000 +0200
+++ /var/tmp/diff_new_pack.l8LkAY/_new  2015-06-24 20:58:03.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fsvs
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:           fsvs
-Version:        1.2.3
+Version:        1.2.5
 Release:        0
 Url:            http://fsvs.tigris.org/
 Summary:        Backup/Restore/Versioning of large Data Sets with Meta-Data
@@ -24,8 +25,7 @@
 Group:          Productivity/Archiving/Backup
 Source:         http://download.fsvs-software.org/fsvs-%{version}.tar.bz2
 Patch1:         fsvs-destdir.patch
-Patch2:         gcc46.diff
-Patch3:         fsvs-1.2.3-linking.patch
+Patch2:         fsvs-1.2.5-linking.patch
 BuildRequires:  apache2-devel
 BuildRequires:  ctags
 BuildRequires:  db-devel
@@ -67,11 +67,10 @@
 %setup -q
 %patch1
 %patch2
-%patch3
 
 %build
 export CFLAGS="%{optflags} $(pkg-config --includes apr-1)"
-export CFLAGS="$CFLAGS -fno-strict-aliasing"
+export CFLAGS="$CFLAGS -fno-strict-aliasing -fgnu89-inline"
 %configure --disable-silent-rules
 %__make %{?jobs:-j%{jobs}}
 

++++++ fsvs-1.2.3-linking.patch -> fsvs-1.2.5-linking.patch ++++++
--- /work/SRC/openSUSE:Factory/fsvs/fsvs-1.2.3-linking.patch    2011-09-23 
01:58:21.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.fsvs.new/fsvs-1.2.5-linking.patch       
2015-06-24 20:58:02.000000000 +0200
@@ -1,13 +1,27 @@
---- src/Makefile.in.orig
-+++ src/Makefile.in
-@@ -16,9 +16,9 @@ HEADREV      := "$Revision: 2424 $"
+diff -up src/fsvs.c.orig src/fsvs.c
+--- src/fsvs.c.orig    2015-06-22 23:08:52.660973689 +0200
++++ src/fsvs.c 2015-06-22 23:09:37.361972946 +0200
+@@ -640,8 +640,7 @@ const char* Version(FILE *output)
+                       " version " FSVS_VERSION "\n");
+       if (opt__is_verbose()>0)
+       {
+-              fprintf(output, "compiled on " __DATE__ " " __TIME__ 
+-                              ", with options:\n\t"
++              fprintf(output, "compiled on with options:\n\t"
+ #ifdef HAVE_VALGRIND
+                               STRINGIFY(HAVE_VALGRIND)
+ #endif
+diff -up src/Makefile.in.orig src/Makefile.in
+--- src/Makefile.in.orig       2015-06-22 23:06:22.966976178 +0200
++++ src/Makefile.in    2015-06-22 23:08:40.808973886 +0200
+@@ -16,9 +16,9 @@ HEADREV      := "$Revision: 2457 $"
  VERSION       = $(shell  perl -e '($$r) = (q( $(HEADREV) ) =~ m:(\d+):); $$t= 
q( $(HEADURL) ) =~ m:/tags/([^/]+): ? $$1 : "trunk"; print "$$t:$$r\n";' )
  
- CFLAGS        := @CFLAGS@
--CFLAGS        += -Wall -funsigned-char -Os -DFSVS_VERSION='"$(VERSION)"' 
-+CFLAGS        += -Wall -funsigned-char -DFSVS_VERSION='"$(VERSION)"' 
+ CFLAGS        := @CFLAGS@ @NEED_FNESTED_FUNCTIONS@
+-CFLAGS        += -Wall -funsigned-char -Os -DFSVS_VERSION='"$(VERSION)"'
++CFLAGS        += -Wall -funsigned-char -DFSVS_VERSION='"$(VERSION)"'
  LDFLAGS       := @LDFLAGS@
--FSVS_LDFLAGS = $(LDFLAGS) -lsvn_subr-1 -lsvn_delta-1 -lsvn_ra-1 -lpcre -lgdbm
+-FSVS_LDFLAGS = $(LDFLAGS) -lsvn_subr-1 -lsvn_delta-1 -lsvn_ra-1 -lpcre -lgdbm 
 +FSVS_LDFLAGS = $(LDFLAGS) -lapr-1 -laprutil-1 -lsvn_subr-1 -lsvn_delta-1 
-lsvn_ra-1 -lpcre -lgdbm -ldl
  EXTRALIBS     := @EXTRALIBS@
  WAA_CHARS?= @WAA_WC_MD5_CHARS@
@@ -37,15 +51,3 @@
  #     $(CC) $(INCS) -MM -MF $@ $<
  include $(D_FILES)
  
---- src/fsvs.c.orig
-+++ src/fsvs.c
-@@ -636,8 +636,7 @@ const char* Version(FILE *output)
-                       " version " FSVS_VERSION "\n");
-       if (opt__is_verbose()>0)
-       {
--              fprintf(output, "compiled on " __DATE__ " " __TIME__ 
--                              ", with options:\n\t"
-+              fprintf(output, "compiled with options:\n\t"
- #ifdef HAVE_VALGRIND
-                               STRINGIFY(HAVE_VALGRIND)
- #endif

++++++ fsvs-1.2.3.tar.bz2 -> fsvs-1.2.5.tar.bz2 ++++++
++++ 4876 lines of diff (skipped)


Reply via email to