Hello community,

here is the log from the commit of package zziplib for openSUSE:Factory checked 
in at 2012-12-17 09:50:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/zziplib (Old)
 and      /work/SRC/openSUSE:Factory/.zziplib.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "zziplib", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/zziplib/zziplib.changes  2011-11-21 
12:52:15.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.zziplib.new/zziplib.changes     2012-12-17 
09:50:29.000000000 +0100
@@ -1,0 +2,12 @@
+Sat Dec 15 18:36:24 UTC 2012 - [email protected]
+
+- Update to 0.13.62 version:
+       * configure.ac: fallback to libtool -export-dynamic unless being sure to
+      use gnu-ld --export-dynamic. The darwin case is a bit special here 
+         as the c-compiler and linker might be from different worlds.
+    * Makefile.am: allow nonstaic build
+    * wrap fd.open like in the Fedora patch
+- Remove the package name on summary
+- Add dos2unix as build dependencie to fix a wrong file encoding
+
+-------------------------------------------------------------------

Old:
----
  zziplib-0.13.49.patch
  zziplib-0.13.58-wronglinking.patch
  zziplib-0.13.58.tar.bz2

New:
----
  zziplib-0.13.62-wronglinking.patch
  zziplib-0.13.62.patch
  zziplib-0.13.62.tar.bz2

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

Other differences:
------------------
++++++ zziplib.spec ++++++
--- /var/tmp/diff_new_pack.8W4j4j/_old  2012-12-17 09:50:31.000000000 +0100
+++ /var/tmp/diff_new_pack.8W4j4j/_new  2012-12-17 09:50:31.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package zziplib
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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,17 +19,22 @@
 
 Name:           zziplib
 %define lname  libzzip-0-13
-Summary:        ZZipLib: Free Zip Compression Library with an Easy-to-Use API
-Version:        0.13.58
-Release:        9
+Summary:        Free Zip Compression Library with an Easy-to-Use API
+Version:        0.13.62
+Release:        0
 License:        LGPL-2.1+
 Group:          System/Libraries
 Url:            http://zziplib.sourceforge.net
 Source0:        
http://prdownloads.sourceforge.net/zziplib/%{name}-%{version}.tar.bz2
 Source2:        baselibs.conf
-Patch:          zziplib-0.13.49.patch
-Patch1:         zziplib-0.13.58-wronglinking.patch
-BuildRequires:  fdupes libtool pkgconfig python zlib-devel
+Patch:          zziplib-0.13.62.patch
+Patch1:         zziplib-0.13.62-wronglinking.patch
+BuildRequires:  fdupes
+BuildRequires:  libtool
+BuildRequires:  pkgconfig
+BuildRequires:  python
+BuildRequires:  zlib-devel
+BuildRequires:  dos2unix
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -37,7 +42,7 @@
 using free algorithms of zlib.
 
 %package -n %lname
-Summary:        ZZipLib: free zip compression library with easy to use API
+Summary:        Free zip compression library with easy to use API
 Group:          System/Libraries
 Obsoletes:      zziplib < %version-%release
 Provides:       zziplib = %version-%release
@@ -48,7 +53,7 @@
 
 %package devel
 License:        LGPL-2.1+
-Summary:        ZZipLib: free zip compression library with easy to use API
+Summary:        Free zip compression library with easy to use API
 Group:          Development/Libraries/C and C++
 Requires:       %lname = %version, zlib-devel
 
@@ -60,6 +65,9 @@
 %setup -q
 %patch
 %patch1
+# Fix wrong encoding
+dos2unix docs/README.MSVC6
+dos2unix docs/sdocbook.css
 
 %build
 autoreconf -fiv

++++++ zziplib-0.13.58-wronglinking.patch -> zziplib-0.13.62-wronglinking.patch 
++++++
--- /work/SRC/openSUSE:Factory/zziplib/zziplib-0.13.58-wronglinking.patch       
2011-09-23 12:53:46.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.zziplib.new/zziplib-0.13.62-wronglinking.patch  
2012-12-17 09:50:29.000000000 +0100
@@ -1,14 +1,14 @@
 --- configure.ac.orig
 +++ configure.ac
-@@ -288,7 +288,7 @@ case "$host_os" in
- 
-     if test ".$can_build_shared" = .no
-     then ZZIPLIB_LDFLAGS=""
--    else ZZIPLIB_LDFLAGS="--export-dynamic"
-+    else ZZIPLIB_LDFLAGS="-Wl,--export-dynamic"
-     fi
-     RESOLVES=' # '
-   ;;
+@@ -302,7 +302,7 @@
+     RESOLVES=" # "
+ ;; *)
+     if test ".$can_build_shared" != ".no" ; then
+-      ZZIPLIB_LDFLAGS="-export-dynamic"
++      ZZIPLIB_LDFLAGS="-Wl,-export-dynamic"
+       if test ".$lt_cv_prog_gnu_ld" == ".yes" ; then
+          ZZIPLIB_LDFLAGS="${wl}--export-dynamic"
+          # TODO: that is for backward compatibility only
 --- zzip/Makefile.am.orig
 +++ zzip/Makefile.am
 @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = 1.5 foreign

++++++ zziplib-0.13.49.patch -> zziplib-0.13.62.patch ++++++
--- /work/SRC/openSUSE:Factory/zziplib/zziplib-0.13.49.patch    2011-09-23 
12:53:46.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.zziplib.new/zziplib-0.13.62.patch       
2012-12-17 09:50:29.000000000 +0100
@@ -10,23 +10,3 @@
     "-v -Xc    % -xstrconst" dnl Solaris C - strings go into readonly segment
     "+w1 -Aa   % +ESlit"      dnl HP-UX C - strings go into readonly segment
     "-w0 -std1 % -readonly_strings" dnl Digital Unix - again readonly segment
-Index: zzip/Makefile.am
-===================================================================
---- zzip/Makefile.am.orig
-+++ zzip/Makefile.am
-@@ -45,13 +45,13 @@ libzzip_la_LDFLAGS= @ZZIPLIB_LDFLAGS@ $(
- libzzip_la_LIBADD= -lz @RESOLVES@
- 
- libzzipmmapped_la_SOURCES =  mmapped.c memdisk.c fetch.c
--libzzipmmapped_la_headers =  mmapped.h memdisk.h fetch.h
-+libzzipmmapped_la_headers =  mmapped.h memdisk.h
- libzzipmmapped_la_LDFLAGS= @ZZIPLIB_LDFLAGS@ $(RELEASE_INFO) $(VERSION_INFO) \
-                     $(THREAD_SAFE)
- libzzipmmapped_la_LIBADD= -lz @RESOLVES@
- 
- libzzipfseeko_la_SOURCES = fseeko.c fetch.c
--libzzipfseeko_la_headers = fseeko.h fetch.h
-+libzzipfseeko_la_headers = fseeko.h 
- libzzipfseeko_la_LDFLAGS= @ZZIPLIB_LDFLAGS@ $(RELEASE_INFO) $(VERSION_INFO) \
-                     $(THREAD_SAFE)
- libzzipfseeko_la_LIBADD= -lz @RESOLVES@

++++++ zziplib-0.13.58.tar.bz2 -> zziplib-0.13.62.tar.bz2 ++++++
++++ 19960 lines of diff (skipped)

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

Reply via email to