Hello community,

here is the log from the commit of package lz4 for openSUSE:Factory checked in 
at 2014-10-05 20:31:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lz4 (Old)
 and      /work/SRC/openSUSE:Factory/.lz4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lz4"

Changes:
--------
--- /work/SRC/openSUSE:Factory/lz4/lz4.changes  2014-07-17 17:31:54.000000000 
+0200
+++ /work/SRC/openSUSE:Factory/.lz4.new/lz4.changes     2014-10-05 
20:31:44.000000000 +0200
@@ -1,0 +2,8 @@
+Wed Oct  1 12:18:15 UTC 2014 - jeng...@inai.de
+
+- Update to version 1.3.1+svn123
+* Added a pkgconfig file
+* Fix a LZ4HC streaming bug
+* Updated the framing specificaiton to 1.4.1
+
+-------------------------------------------------------------------

Old:
----
  lz4-svn119.tar.lz

New:
----
  lz4-1.3.1+svn123.tar.xz

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

Other differences:
------------------
++++++ lz4.spec ++++++
--- /var/tmp/diff_new_pack.VvPdXa/_old  2014-10-05 20:31:45.000000000 +0200
+++ /var/tmp/diff_new_pack.VvPdXa/_new  2014-10-05 20:31:45.000000000 +0200
@@ -18,7 +18,7 @@
 
 Name:           lz4
 %define lname  liblz4-1
-Version:        1.2.0.r119
+Version:        1.3.1+svn123
 Release:        0
 Summary:        Hash-based Predictive Lempel-Ziv compressor
 License:        GPL-2.0+ and BSD-2-Clause
@@ -28,11 +28,12 @@
 
 #SVN-Clone:    http://lz4.googlecode.com/svn/trunk
 # Project offers no source tarballs.
-Source:         %name-svn119.tar.lz
+Source:         %name-%version.tar.xz
 Patch1:         lz4-use-shlib.diff
 Patch2:         lz4-killdate.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  lzip
+BuildRequires:  pkg-config
+BuildRequires:  xz
 
 %description
 LZ4 is a very fast compressor, based on well-known LZ77 (Lempel-Ziv)
@@ -95,5 +96,6 @@
 %defattr(-,root,root)
 %_includedir/lz4*.h
 %_libdir/liblz4.so
+%_libdir/pkgconfig/*.pc
 
 %changelog

++++++ lz4-killdate.diff ++++++
--- /var/tmp/diff_new_pack.VvPdXa/_old  2014-10-05 20:31:45.000000000 +0200
+++ /var/tmp/diff_new_pack.VvPdXa/_new  2014-10-05 20:31:45.000000000 +0200
@@ -7,7 +7,7 @@
 ===================================================================
 --- trunk.orig/programs/fullbench.c
 +++ trunk/programs/fullbench.c
-@@ -109,7 +109,7 @@
+@@ -107,7 +107,7 @@
  #  define LZ4_VERSION ""
  #endif
  #define AUTHOR "Yann Collet"
@@ -20,8 +20,8 @@
 ===================================================================
 --- trunk.orig/programs/lz4cli.c
 +++ trunk/programs/lz4cli.c
-@@ -112,7 +112,7 @@
- #  define LZ4_VERSION "v1.2.0"
+@@ -116,7 +116,7 @@
+ #  define LZ4_VERSION "r122"
  #endif
  #define AUTHOR "Yann Collet"
 -#define WELCOME_MESSAGE "*** %s %i-bits %s, by %s (%s) ***\n", 
COMPRESSOR_NAME, (int)(sizeof(void*)*8), LZ4_VERSION, AUTHOR, __DATE__

++++++ lz4-use-shlib.diff ++++++
--- /var/tmp/diff_new_pack.VvPdXa/_old  2014-10-05 20:31:45.000000000 +0200
+++ /var/tmp/diff_new_pack.VvPdXa/_new  2014-10-05 20:31:45.000000000 +0200
@@ -6,19 +6,19 @@
 ===================================================================
 --- trunk.orig/programs/Makefile
 +++ trunk/programs/Makefile
-@@ -69,11 +69,11 @@ default: lz4 lz4c
+@@ -70,11 +70,11 @@ default: lz4 lz4c
  
- all: lz4 lz4c lz4c32 fullbench fullbench32 fuzzer fuzzer32 datagen
+ all: lz4 lz4c lz4c32 fullbench fullbench32 fuzzer fuzzer32 frametest datagen
  
--lz4: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c bench.c xxhash.c lz4io.c lz4cli.c
+-lz4: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/xxhash.c bench.c lz4io.c 
lz4cli.c
 -      $(CC)      $(FLAGS) -DDISABLE_LZ4C_LEGACY_OPTIONS $^ -o $@$(EXT)
-+lz4: bench.c xxhash.c lz4io.c lz4cli.c
++lz4: $(LZ4DIR)/xxhash.c bench.c lz4io.c lz4cli.c
 +      $(CC)      $(FLAGS) -DDISABLE_LZ4C_LEGACY_OPTIONS $^ -o $@$(EXT) 
-L${LZ4DIR} -llz4
  
--lz4c  : $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c bench.c xxhash.c lz4io.c lz4cli.c
+-lz4c  : $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/xxhash.c bench.c lz4io.c 
lz4cli.c
 -      $(CC)      $(FLAGS) $^ -o $@$(EXT)
-+lz4c: bench.c xxhash.c lz4io.c lz4cli.c
++lz4c  : $(LZ4DIR)/xxhash.c bench.c lz4io.c lz4cli.c
 +      $(CC)      $(FLAGS) $^ -o $@$(EXT) -L${LZ4DIR} -llz4
  
- lz4c32: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c bench.c xxhash.c lz4io.c lz4cli.c
+ lz4c32: $(LZ4DIR)/lz4.c $(LZ4DIR)/lz4hc.c $(LZ4DIR)/xxhash.c bench.c lz4io.c 
lz4cli.c
        $(CC) -m32 $(FLAGS) $^ -o $@$(EXT)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to