Hello community,

here is the log from the commit of package pixz for openSUSE:Factory checked in 
at 2013-01-10 13:51:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/pixz (Old)
 and      /work/SRC/openSUSE:Factory/.pixz.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "pixz", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/pixz/pixz.changes        2012-11-29 
09:28:57.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.pixz.new/pixz.changes   2013-01-10 
13:51:18.000000000 +0100
@@ -1,0 +2,10 @@
+Wed Jan  9 18:51:06 UTC 2013 - idon...@suse.com
+
+- Update to version 1.0.2
+  * Fix a crashing bug when input is incompressible
+    https://github.com/vasi/pixz/issues/10
+  * Add a man page
+  * Add tuning options -e, -q, -f
+- Add pixz-underlinking.patch to explicitly link to -lm
+
+-------------------------------------------------------------------

Old:
----
  pixz-1.0.tar.gz

New:
----
  pixz-1.0.2.tgz
  pixz-underlinking.patch

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

Other differences:
------------------
++++++ pixz.spec ++++++
--- /var/tmp/diff_new_pack.NfLiBG/_old  2013-01-10 13:51:19.000000000 +0100
+++ /var/tmp/diff_new_pack.NfLiBG/_new  2013-01-10 13:51:19.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pixz
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -17,13 +17,14 @@
 
 
 Name:           pixz
-Version:        1.0
+Version:        1.0.2
 Release:        0
 Summary:        Parallel, indexing version of XZ
 License:        BSD-2-Clause
 Group:          Productivity/Archiving/Compression
 Url:            https://github.com/vasi/pixz
-Source:         pixz-%{version}.tar.gz
+Source:         http://sourceforge.net/projects/pixz/files/pixz-%{version}.tgz
+Patch1:         pixz-underlinking.patch
 BuildRequires:  libarchive-devel
 BuildRequires:  xz-devel
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -38,17 +39,22 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
-make %{?_smp_mflags}
+make %{?_smp_mflags} CFLAGS="%{optflags}"
 
 %install
 mkdir -p %{buildroot}/%{_bindir}
+mkdir -p %{buildroot}/%{_mandir}/man1/
+
 install -m 0755 pixz %{buildroot}/%{_bindir}/pixz
+install -m 0644 pixz.1 %{buildroot}/%{_mandir}/man1/pixz.1
 
 %files
 %defattr(-,root,root)
-%{_bindir}/pixz
 %doc TODO README LICENSE
+%{_bindir}/pixz
+%{_mandir}/man1/pixz.1.gz
 
 %changelog

++++++ pixz-underlinking.patch ++++++
Index: pixz-1.0.2/Makefile
===================================================================
--- pixz-1.0.2.orig/Makefile
+++ pixz-1.0.2/Makefile
@@ -12,7 +12,7 @@ MYCFLAGS = $(patsubst %,-I%/include,$(LI
 MYLDFLAGS = $(patsubst %,-L%/lib,$(LIBPREFIX)) $(OPT) -Wall
 
 THREADS = -lpthread
-LIBADD = $(THREADS) -llzma -larchive
+LIBADD = $(THREADS) -llzma -larchive -lm
 
 CC = gcc
 COMPILE = $(CC) $(MYCFLAGS) $(CFLAGS) -c -o
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to