[csw-devel] SF.net SVN: gar:[10565] csw/mgar/pkg/plzip/trunk

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Thu Jul 22 13:22:31 CEST 2010


Revision: 10565
          http://gar.svn.sourceforge.net/gar/?rev=10565&view=rev
Author:   dmichelsen
Date:     2010-07-22 11:22:30 +0000 (Thu, 22 Jul 2010)

Log Message:
-----------
plzip: Update to 0.6

Modified Paths:
--------------
    csw/mgar/pkg/plzip/trunk/Makefile
    csw/mgar/pkg/plzip/trunk/checksums

Added Paths:
-----------
    csw/mgar/pkg/plzip/trunk/files/0001-Add-prototype-for-kill-2.patch

Removed Paths:
-------------
    csw/mgar/pkg/plzip/trunk/files/0001-Use-inttypes-instead-of-stdint.patch

Modified: csw/mgar/pkg/plzip/trunk/Makefile
===================================================================
--- csw/mgar/pkg/plzip/trunk/Makefile	2010-07-22 11:10:52 UTC (rev 10564)
+++ csw/mgar/pkg/plzip/trunk/Makefile	2010-07-22 11:22:30 UTC (rev 10565)
@@ -2,7 +2,7 @@
 GARVERSION = 0.6
 CATEGORIES = utils
 
-DESCRIPTION = plzip is a lossless data compressor based on the LZMA algorithm.
+DESCRIPTION = A lossless data compressor based on the LZMA algorithm
 define BLURB
   Lzip is a lossless data compressor based on the LZMA algorithm, with very safe
   integrity checking and a user interface similar to the one of gzip or bzip2. Lzip
@@ -14,7 +14,7 @@
 
 MASTER_SITES = http://download.savannah.gnu.org/releases/lzip/ 
 DISTFILES  = $(GARNAME)-$(GARVERSION).tar.gz
-PATCHFILES  = 0001-Use-inttypes-instead-of-stdint.patch
+PATCHFILES  = 0001-Add-prototype-for-kill-2.patch
 PATCHFILES += 0002-Use-ucb-echo.patch
 
 # We define upstream file regex so we can be notifed of new upstream software release

Modified: csw/mgar/pkg/plzip/trunk/checksums
===================================================================
--- csw/mgar/pkg/plzip/trunk/checksums	2010-07-22 11:10:52 UTC (rev 10564)
+++ csw/mgar/pkg/plzip/trunk/checksums	2010-07-22 11:22:30 UTC (rev 10565)
@@ -1,3 +1,3 @@
-ac5eb1a5daa65a55d37b6bcde4c58fe7  0001-Use-inttypes-instead-of-stdint.patch
+179318ac88ff9ddda040640582f9b404  0001-Add-prototype-for-kill-2.patch
 690e11a488625fbb1f99e0ea411e28d4  0002-Use-ucb-echo.patch
 f452029b1e8232cbe837f4437613e1ed  plzip-0.6.tar.gz

Added: csw/mgar/pkg/plzip/trunk/files/0001-Add-prototype-for-kill-2.patch
===================================================================
--- csw/mgar/pkg/plzip/trunk/files/0001-Add-prototype-for-kill-2.patch	                        (rev 0)
+++ csw/mgar/pkg/plzip/trunk/files/0001-Add-prototype-for-kill-2.patch	2010-07-22 11:22:30 UTC (rev 10565)
@@ -0,0 +1,25 @@
+From 747070346a5031f612a09bf9a53953116c20030c Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Thu, 22 Jul 2010 11:29:22 +0200
+Subject: [PATCH] Add prototype for kill(2)
+
+---
+ main.cc |    2 ++
+ 1 files changed, 2 insertions(+), 0 deletions(-)
+
+diff --git a/main.cc b/main.cc
+index 17ec3ee..9c56000 100644
+--- a/main.cc
++++ b/main.cc
+@@ -40,6 +40,8 @@
+ #include <utime.h>
+ #include <sys/stat.h>
+ #include <lzlib.h>
++#include <sys/types.h>
++#include <signal.h>
+ 
+ #include "arg_parser.h"
+ #include "plzip.h"
+-- 
+1.7.1
+

Deleted: csw/mgar/pkg/plzip/trunk/files/0001-Use-inttypes-instead-of-stdint.patch
===================================================================
--- csw/mgar/pkg/plzip/trunk/files/0001-Use-inttypes-instead-of-stdint.patch	2010-07-22 11:10:52 UTC (rev 10564)
+++ csw/mgar/pkg/plzip/trunk/files/0001-Use-inttypes-instead-of-stdint.patch	2010-07-22 11:22:30 UTC (rev 10565)
@@ -1,54 +0,0 @@
-From 4ab77d47d08780c9f97961c34c3228a290aeed2f Mon Sep 17 00:00:00 2001
-From: Dagobert Michelsen <dam at opencsw.org>
-Date: Fri, 19 Feb 2010 11:51:24 +0100
-Subject: [PATCH] Use inttypes instead of stdint
-
----
- compress.cc   |    2 +-
- decompress.cc |    2 +-
- main.cc       |    3 ++-
- 3 files changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/compress.cc b/compress.cc
-index 3f5e143..2e3b843 100644
---- a/compress.cc
-+++ b/compress.cc
-@@ -29,7 +29,7 @@
- #include <string>
- #include <vector>
- #include <pthread.h>
--#include <stdint.h>
-+#include <inttypes.h>
- #include <unistd.h>
- #include <lzlib.h>
- 
-diff --git a/decompress.cc b/decompress.cc
-index 85baaf6..2264d1b 100644
---- a/decompress.cc
-+++ b/decompress.cc
-@@ -29,7 +29,7 @@
- #include <string>
- #include <vector>
- #include <pthread.h>
--#include <stdint.h>
-+#include <inttypes.h>
- #include <unistd.h>
- #include <lzlib.h>
- 
-diff --git a/main.cc b/main.cc
-index dc21a9a..d9bc0ab 100644
---- a/main.cc
-+++ b/main.cc
-@@ -35,7 +35,8 @@
- #include <vector>
- #include <fcntl.h>
- #include <pthread.h>
--#include <stdint.h>
-+#include <inttypes.h>
-+#include <signal.h>
- #include <unistd.h>
- #include <utime.h>
- #include <sys/stat.h>
--- 
-1.6.5.1
-


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