SF.net SVN: gar:[24293] csw/mgar/pkg/lzlib/trunk

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Fri Nov 7 14:33:49 CET 2014


Revision: 24293
          http://sourceforge.net/p/gar/code/24293
Author:   dmichelsen
Date:     2014-11-07 13:33:45 +0000 (Fri, 07 Nov 2014)
Log Message:
-----------
lzlib/trunk: Update to 1.6

Modified Paths:
--------------
    csw/mgar/pkg/lzlib/trunk/Makefile
    csw/mgar/pkg/lzlib/trunk/checksums
    csw/mgar/pkg/lzlib/trunk/files/0001-Use-Sun-Studio-syntax-for-shared-libs.patch
    csw/mgar/pkg/lzlib/trunk/files/0001-sh-does-not-support-e.patch

Modified: csw/mgar/pkg/lzlib/trunk/Makefile
===================================================================
--- csw/mgar/pkg/lzlib/trunk/Makefile	2014-11-07 13:16:41 UTC (rev 24292)
+++ csw/mgar/pkg/lzlib/trunk/Makefile	2014-11-07 13:33:45 UTC (rev 24293)
@@ -1,5 +1,5 @@
 NAME = lzlib
-VERSION = 1.5
+VERSION = 1.6
 GARTYPE = v2
 
 DESCRIPTION = A lossless data compression library based on the LZMA algorithm
@@ -9,7 +9,7 @@
   data. The compressed data format used by the library is the lzip format. 
 endef
 
-MASTER_SITES = http://download.savannah.gnu.org/releases/lzip/
+MASTER_SITES = http://download.savannah.gnu.org/releases/lzip/lzlib/
 DISTFILES += $(DISTNAME).tar.lz
 PATCHFILES += 0001-Use-Sun-Studio-syntax-for-shared-libs.patch
 PATCHFILES += 0001-sh-does-not-support-e.patch
@@ -28,7 +28,7 @@
 
 EXTRA_CFLAGS = -xc99=all
 EXTRA_CXXFLAGS = -xcode=pic32
-EXTRA_LINKER_FLAGS = -lCrun -norunpath
+EXTRA_LINKER_FLAGS = -lCrun
 
 BUILD64_LIBS_ONLY = 1
 NOISALIST = 1

Modified: csw/mgar/pkg/lzlib/trunk/checksums
===================================================================
--- csw/mgar/pkg/lzlib/trunk/checksums	2014-11-07 13:16:41 UTC (rev 24292)
+++ csw/mgar/pkg/lzlib/trunk/checksums	2014-11-07 13:33:45 UTC (rev 24293)
@@ -1 +1 @@
-6378ea07986891b6fb4d7f55c14de60f  lzlib-1.5.tar.lz
+a0cde67fd0ffd4e4f92d5d7a122e1084  lzlib-1.6.tar.lz

Modified: csw/mgar/pkg/lzlib/trunk/files/0001-Use-Sun-Studio-syntax-for-shared-libs.patch
===================================================================
--- csw/mgar/pkg/lzlib/trunk/files/0001-Use-Sun-Studio-syntax-for-shared-libs.patch	2014-11-07 13:16:41 UTC (rev 24292)
+++ csw/mgar/pkg/lzlib/trunk/files/0001-Use-Sun-Studio-syntax-for-shared-libs.patch	2014-11-07 13:33:45 UTC (rev 24293)
@@ -1,6 +1,6 @@
-From 0a4382b02f30efcebf1f3337722d012ae79e8fe7 Mon Sep 17 00:00:00 2001
+From 664c4b62afcf76d5e406806595bfca8df64d1299 Mon Sep 17 00:00:00 2001
 From: Dagobert Michelsen <dam at opencsw.org>
-Date: Mon, 5 Aug 2013 13:29:27 +0200
+Date: Fri, 7 Nov 2014 14:24:16 +0100
 Subject: [PATCH] Use Sun Studio syntax for shared libs
 
 ---
@@ -8,18 +8,18 @@
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile.in b/Makefile.in
-index 7be45f7..3d0e4df 100644
+index cabff9a..72e8621 100644
 --- a/Makefile.in
 +++ b/Makefile.in
 @@ -21,7 +21,7 @@ lib$(libname).a : lzlib.o
  	$(AR) -rcs $@ $<
  
  lib$(libname).so.$(pkgversion) : lzlib_sh.o
--	$(CC) -shared -Wl,--soname=lib$(libname).so.$(soversion) -o $@ $<
-+	$(CC) $(LDFLAGS) -G -h lib$(libname).so.$(soversion) -o $@ $<
+-	$(CC) $(CFLAGS) $(LDFLAGS) -fpic -fPIC -shared -Wl,--soname=lib$(libname).so.$(soversion) -o $@ $<
++	$(CC) $(CFLAGS) $(LDFLAGS) -fpic -fPIC  -G -h lib$(libname).so.$(soversion) -o $@ $<
  
  $(progname) : $(objs) lib$(libname).a
- 	$(CC) $(LDFLAGS) -o $@ $(objs) lib$(libname).a
+ 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(objs) lib$(libname).a
 -- 
-1.8.3.1
+2.0.3
 

Modified: csw/mgar/pkg/lzlib/trunk/files/0001-sh-does-not-support-e.patch
===================================================================
--- csw/mgar/pkg/lzlib/trunk/files/0001-sh-does-not-support-e.patch	2014-11-07 13:16:41 UTC (rev 24292)
+++ csw/mgar/pkg/lzlib/trunk/files/0001-sh-does-not-support-e.patch	2014-11-07 13:33:45 UTC (rev 24293)
@@ -1,31 +1,25 @@
-From 0afe0e4a52cd6b0e8db4e5c3c48aaf3346d8151d Mon Sep 17 00:00:00 2001
+From a9d51c5abb07d90c0f286af8bcf8842dc3ebf273 Mon Sep 17 00:00:00 2001
 From: Dagobert Michelsen <dam at opencsw.org>
-Date: Wed, 25 Sep 2013 16:01:48 +0200
+Date: Fri, 7 Nov 2014 14:29:05 +0100
 Subject: [PATCH] sh does not support -e
 
 ---
- Makefile.in | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
+ Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/Makefile.in b/Makefile.in
-index 3d0e4df..1cab86e 100644
+index 72e8621..5372395 100644
 --- a/Makefile.in
 +++ b/Makefile.in
-@@ -86,12 +86,12 @@ install-bin : all
- 	$(INSTALL_DATA) ./lib$(libname).a "$(DESTDIR)$(libdir)/lib$(libname).a"
+@@ -87,7 +87,7 @@ install-bin : all
+ 	fi
  	if [ -n "$(progname_shared)" ] ; then \
  	  $(INSTALL_PROGRAM) ./lib$(libname).so.$(pkgversion) "$(DESTDIR)$(libdir)/lib$(libname).so.$(pkgversion)" ; \
 -	  if [ -e "$(DESTDIR)$(libdir)/lib$(libname).so.$(soversion)" ] ; then \
 +	  if [ -f "$(DESTDIR)$(libdir)/lib$(libname).so.$(soversion)" ] ; then \
- 	    rm -f "$(DESTDIR)$(libdir)/lib$(libname).so.$(soversion)" ; \
  	    run_ldconfig=no ; \
  	  else run_ldconfig=yes ; \
  	  fi ; \
--	  if [ -e "$(DESTDIR)$(libdir)/lib$(libname).so" ] ; then \
-+	  if [ -f "$(DESTDIR)$(libdir)/lib$(libname).so" ] ; then \
- 	    rm -f "$(DESTDIR)$(libdir)/lib$(libname).so" ; \
- 	  fi ; \
- 	  cd "$(DESTDIR)$(libdir)" && ln -s lib$(libname).so.$(pkgversion) lib$(libname).so ; \
 -- 
-1.8.3.4
+2.0.3
 

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the devel mailing list