[csw-devel] SF.net SVN: gar:[12196] csw/mgar/pkg/lzlib/trunk/files

rthurner at users.sourceforge.net rthurner at users.sourceforge.net
Wed Jan 5 18:52:43 CET 2011


Revision: 12196
          http://gar.svn.sourceforge.net/gar/?rev=12196&view=rev
Author:   rthurner
Date:     2011-01-05 17:52:43 +0000 (Wed, 05 Jan 2011)

Log Message:
-----------
lzlib, delete old style patches

Removed Paths:
-------------
    csw/mgar/pkg/lzlib/trunk/files/0001-Do-not-do-ldconfig.patch
    csw/mgar/pkg/lzlib/trunk/files/0001-Remove-Linux-specific-stuff-add-Solaris-specific-stu.patch
    csw/mgar/pkg/lzlib/trunk/files/0002-Change-linker-flags-for-shared-libs-to-be-Sun-Studio.patch
    csw/mgar/pkg/lzlib/trunk/files/0002-Use-ucb-echo-as-it-only-understands-n.patch

Deleted: csw/mgar/pkg/lzlib/trunk/files/0001-Do-not-do-ldconfig.patch
===================================================================
--- csw/mgar/pkg/lzlib/trunk/files/0001-Do-not-do-ldconfig.patch	2011-01-05 17:41:24 UTC (rev 12195)
+++ csw/mgar/pkg/lzlib/trunk/files/0001-Do-not-do-ldconfig.patch	2011-01-05 17:52:43 UTC (rev 12196)
@@ -1,30 +0,0 @@
-From e81994a6f342f98d03c7008b1865bb8f29e6931b Mon Sep 17 00:00:00 2001
-From: Dagobert Michelsen <dam at opencsw.org>
-Date: Thu, 18 Feb 2010 18:19:49 +0100
-Subject: [PATCH 1/2] Do not do ldconfig
-
----
- Makefile.in |    3 +--
- 1 files changed, 1 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index c2ba00d..e51513b 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -92,12 +92,11 @@ install : all install-info
- 	$(INSTALL_DATA) ./lib$(libname).a "$(DESTDIR)$(libdir)/lib$(libname).a"
- 	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 \
- 	    run_ldconfig=no ; rm -f "$(DESTDIR)$(libdir)/lib$(libname).so.$(soversion)" ; \
- 	  else run_ldconfig=yes ; \
- 	  fi ; \
- 	  cd "$(DESTDIR)$(libdir)" && ln -s lib$(libname).so.$(pkgversion) lib$(libname).so.$(soversion) ; \
--	  if [ $${run_ldconfig} = yes ] ; then $(LDCONFIG) "$(DESTDIR)$(libdir)" ; fi ; \
- 	fi
- 
- install-info :
--- 
-1.6.6
-

Deleted: csw/mgar/pkg/lzlib/trunk/files/0001-Remove-Linux-specific-stuff-add-Solaris-specific-stu.patch
===================================================================
--- csw/mgar/pkg/lzlib/trunk/files/0001-Remove-Linux-specific-stuff-add-Solaris-specific-stu.patch	2011-01-05 17:41:24 UTC (rev 12195)
+++ csw/mgar/pkg/lzlib/trunk/files/0001-Remove-Linux-specific-stuff-add-Solaris-specific-stu.patch	2011-01-05 17:52:43 UTC (rev 12196)
@@ -1,95 +0,0 @@
-From 015e68da03c76cdd90f5f8879259e1648717062e Mon Sep 17 00:00:00 2001
-From: Dagobert Michelsen <dam at opencsw.org>
-Date: Thu, 18 Feb 2010 17:46:25 +0100
-Subject: [PATCH] Remove Linux specific stuff, add Solaris specific stuff
-
----
- configure  |    2 +-
- decoder.cc |    2 +-
- encoder.cc |    2 +-
- lzcheck.cc |    2 +-
- lzlib.cc   |    2 +-
- main.cc    |    3 ++-
-
-diff --git a/configure b/configure
-index fe01eac..eb9dbc8 100755
---- a/configure
-+++ b/configure
-@@ -32,7 +32,7 @@ mandir='$(datadir)/man'
- sysconfdir='$(prefix)/etc'
- CXX=
- CPPFLAGS=
--CXXFLAGS='-Wall -W -O2'
-+CXXFLAGS=
- LDFLAGS=
- 
- # Loop over all args
-diff --git a/decoder.cc b/decoder.cc
-index 429d33e..0d69bcc 100644
---- a/decoder.cc
-+++ b/decoder.cc
-@@ -31,7 +31,7 @@
- #include <cerrno>
- #include <cstdlib>
- #include <cstring>
--#include <stdint.h>
-+#include <inttypes.h>
- 
- #include "lzlib.h"
- #include "lzip.h"
-diff --git a/encoder.cc b/encoder.cc
-index 1b979ed..7625a35 100644
---- a/encoder.cc
-+++ b/encoder.cc
-@@ -31,7 +31,7 @@
- #include <cerrno>
- #include <cstdlib>
- #include <cstring>
--#include <stdint.h>
-+#include <inttypes.h>
- 
- #include "lzlib.h"
- #include "lzip.h"
-diff --git a/lzcheck.cc b/lzcheck.cc
-index b54f525..54a4869 100644
---- a/lzcheck.cc
-+++ b/lzcheck.cc
-@@ -18,7 +18,7 @@
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
--#include <stdint.h>
-+#include <inttypes.h>
- #include <unistd.h>
- 
- #include "lzlib.h"
-diff --git a/lzlib.cc b/lzlib.cc
-index de5d0a9..0abc3d3 100644
---- a/lzlib.cc
-+++ b/lzlib.cc
-@@ -27,7 +27,7 @@
- 
- #include <algorithm>
- #include <cstring>
--#include <stdint.h>
-+#include <inttypes.h>
- 
- #include "lzlib.h"
- #include "lzip.h"
-diff --git a/main.cc b/main.cc
-index 3d4c0f6..fb78a1e 100644
---- a/main.cc
-+++ b/main.cc
-@@ -33,7 +33,8 @@
- #include <string>
- #include <vector>
- #include <fcntl.h>
--#include <stdint.h>
-+#include <inttypes.h>
-+#include <signal.h>
- #include <unistd.h>
- #include <utime.h>
- #include <sys/stat.h>
--- 
-1.6.6
-

Deleted: csw/mgar/pkg/lzlib/trunk/files/0002-Change-linker-flags-for-shared-libs-to-be-Sun-Studio.patch
===================================================================
--- csw/mgar/pkg/lzlib/trunk/files/0002-Change-linker-flags-for-shared-libs-to-be-Sun-Studio.patch	2011-01-05 17:41:24 UTC (rev 12195)
+++ csw/mgar/pkg/lzlib/trunk/files/0002-Change-linker-flags-for-shared-libs-to-be-Sun-Studio.patch	2011-01-05 17:52:43 UTC (rev 12196)
@@ -1,25 +0,0 @@
-From ccab3f0f516aa027a935e70e77ff0c0b0a6445f8 Mon Sep 17 00:00:00 2001
-From: Dagobert Michelsen <dam at opencsw.org>
-Date: Thu, 18 Feb 2010 18:08:08 +0100
-Subject: [PATCH] Change linker flags for shared libs to be Sun Studio
-
----
- Makefile.in |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index a68698a..c2ba00d 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -23,7 +23,7 @@ lib$(libname).a: $(lib_objs)
- 	$(AR) -rcs lib$(libname).a $(lib_objs)
- 
- lib$(libname).so.$(pkgversion) : $(sh_lib_objs)
--	$(CXX) -shared -Wl,--soname=lib$(libname).so.$(soversion) -o lib$(libname).so.$(pkgversion) $(sh_lib_objs)
-+	$(CXX) $(LDFLAGS) -G -h lib$(libname).so.$(soversion) -o lib$(libname).so.$(pkgversion) $(sh_lib_objs)
- 
- $(progname) : $(objs) lib$(libname).a
- 	$(CXX) $(LDFLAGS) -o $(progname) $(objs) lib$(libname).a
--- 
-1.6.6
-

Deleted: csw/mgar/pkg/lzlib/trunk/files/0002-Use-ucb-echo-as-it-only-understands-n.patch
===================================================================
--- csw/mgar/pkg/lzlib/trunk/files/0002-Use-ucb-echo-as-it-only-understands-n.patch	2011-01-05 17:41:24 UTC (rev 12195)
+++ csw/mgar/pkg/lzlib/trunk/files/0002-Use-ucb-echo-as-it-only-understands-n.patch	2011-01-05 17:52:43 UTC (rev 12196)
@@ -1,26 +0,0 @@
-From 583bcd2e4276b290bd8cf29894292a1fe5b0057a Mon Sep 17 00:00:00 2001
-From: Dagobert Michelsen <dam at opencsw.org>
-Date: Thu, 18 Feb 2010 18:20:56 +0100
-Subject: [PATCH 2/2] Use ucb echo as it only understands -n
-
----
- testsuite/check.sh |    3 +++
- 1 files changed, 3 insertions(+), 0 deletions(-)
-
-diff --git a/testsuite/check.sh b/testsuite/check.sh
-index e35876d..69b5c03 100755
---- a/testsuite/check.sh
-+++ b/testsuite/check.sh
-@@ -5,6 +5,9 @@
- # This script is free software: you have unlimited permission
- # to copy, distribute and modify it.
- 
-+PATH=/usr/ucb:$PATH
-+export PATH
-+
- LC_ALL=C
- export LC_ALL
- objdir=`pwd`
--- 
-1.6.6
-


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