summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2007-07-26 06:37:30 +0000
committerrillig <rillig@pkgsrc.org>2007-07-26 06:37:30 +0000
commit1eed975c7817cf65b967745d872a46426b3245ef (patch)
tree423f58e994bf44c6abfb965fcacbaf700df1dc68 /archivers
parent29adba2ee2208ff55f0a35abf5ce22184872612f (diff)
downloadpkgsrc-1eed975c7817cf65b967745d872a46426b3245ef.tar.gz
Updated pbzip to 1.0.2.
Changes since 1.0: Changes in 1.0.2 (Jul 25, 2007) - Added support to directly compress files without using threads when files are smaller than the specified block size or the system only has 1 CPU. This will speed things up considerably if you are compressing many small files. You can force this behaviour by using -p1 - Added support for pbunzip2 symlink to automatically specify decompression mode - Changed pbzip2 exit code behaviour to match bzip2 for all error states (ie: trying to compress a file that already has a .bz2 extension) Changes in 1.0.1 (Mar 20, 2007) - Added #ifdef PBZIP_NO_LOADAVG to remove load average code for UNIX systems that do not support it such as HP-UX and OSF1
Diffstat (limited to 'archivers')
-rw-r--r--archivers/pbzip2/Makefile4
-rw-r--r--archivers/pbzip2/distinfo9
-rw-r--r--archivers/pbzip2/patches/patch-aa13
3 files changed, 20 insertions, 6 deletions
diff --git a/archivers/pbzip2/Makefile b/archivers/pbzip2/Makefile
index 8b21ca386d7..408c6d63520 100644
--- a/archivers/pbzip2/Makefile
+++ b/archivers/pbzip2/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.15 2007/03/14 17:50:46 rillig Exp $
+# $NetBSD: Makefile,v 1.16 2007/07/26 06:37:30 rillig Exp $
#
-DISTNAME= pbzip2-1.0
+DISTNAME= pbzip2-1.0.2
CATEGORIES= archivers
MASTER_SITES= http://compression.ca/pbzip2/
diff --git a/archivers/pbzip2/distinfo b/archivers/pbzip2/distinfo
index 610b2580cc0..ae5f923fac2 100644
--- a/archivers/pbzip2/distinfo
+++ b/archivers/pbzip2/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.10 2007/03/14 17:50:46 rillig Exp $
+$NetBSD: distinfo,v 1.11 2007/07/26 06:37:30 rillig Exp $
-SHA1 (pbzip2-1.0.tar.gz) = 974d22a3995ffd91b55b7bc4d321fe0a4ae73827
-RMD160 (pbzip2-1.0.tar.gz) = 4a499402ebac69125511ef086b9da1fa5e143908
-Size (pbzip2-1.0.tar.gz) = 21351 bytes
+SHA1 (pbzip2-1.0.2.tar.gz) = 6a996ffd0d84f033ceb49c6a354e89c0c007306a
+RMD160 (pbzip2-1.0.2.tar.gz) = 86b703c467e384e02cc3de85c8f632f5afa376ad
+Size (pbzip2-1.0.2.tar.gz) = 22562 bytes
+SHA1 (patch-aa) = 8f613afc47551c330207b2ecdc291a6d56c8a1d9
diff --git a/archivers/pbzip2/patches/patch-aa b/archivers/pbzip2/patches/patch-aa
new file mode 100644
index 00000000000..afa07fd7cea
--- /dev/null
+++ b/archivers/pbzip2/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.4 2007/07/26 06:37:30 rillig Exp $
+
+--- pbzip2.cpp.orig 2007-07-26 02:08:16.000000000 +0200
++++ pbzip2.cpp 2007-07-26 08:31:38.000000000 +0200
+@@ -129,7 +129,7 @@
+ #endif
+
+ #ifdef WIN32
+-#define PATH_SEP '\'
++#define PATH_SEP '\\'
+ #define usleep(x) Sleep(x/1000)
+ #define LOW_DWORD(x) ((*(LARGE_INTEGER *)&x).LowPart)
+ #define HIGH_DWORD(x) ((*(LARGE_INTEGER *)&x).HighPart)