>From 4.57 to 4.58. Corrected HOMEPAGE, too.
Regression tests run on i386 and amd64.
Changelog notes speed optimizations, bug fixes, utf8 support for .zip
filenames, .lzma unpack added.
----------
Index: Makefile
===================================================================
RCS file: /cvs/ports/archivers/p7zip/Makefile,v
retrieving revision 1.7
diff -u -r1.7 Makefile
--- Makefile 16 Dec 2007 11:22:29 -0000 1.7
+++ Makefile 8 Jun 2008 16:01:05 -0000
@@ -5,14 +5,14 @@
COMMENT-main= file archiver with high compression ratio
COMMENT-rar= rar modules for p7zip
-V= 4.57
+V= 4.58
DISTNAME= p7zip_${V}_src_all
PKGNAME= p7zip-${V}
PKGNAME-main= p7zip-${V}
PKGNAME-rar= p7zip-rar-${V}
CATEGORIES= archivers
-HOMEPAGE= http://www.7-zip.org/
+HOMEPAGE= http://sourceforge.net/projects/p7zip/
MAINTAINER= Josh Grosse <[EMAIL PROTECTED]>
Index: distinfo
===================================================================
RCS file: /cvs/ports/archivers/p7zip/distinfo,v
retrieving revision 1.6
diff -u -r1.6 distinfo
--- distinfo 16 Dec 2007 11:22:29 -0000 1.6
+++ distinfo 8 Jun 2008 15:41:57 -0000
@@ -1,5 +1,5 @@
-MD5 (p7zip_4.57_src_all.tar.bz2) = dz942LKX64WGJmZ9TfqTxw==
-RMD160 (p7zip_4.57_src_all.tar.bz2) = r0BWO06thNE46f/wOiZ3VAxQ0p0=
-SHA1 (p7zip_4.57_src_all.tar.bz2) = 7aXePTVWfiYzNz2+YDE1J6ak2yc=
-SHA256 (p7zip_4.57_src_all.tar.bz2) =
AOkjOG3VPVMqhjMdFpTq7uYmeDr6UD+R7fc3A1fgW1M=
-SIZE (p7zip_4.57_src_all.tar.bz2) = 1473608
+MD5 (p7zip_4.58_src_all.tar.bz2) = MVsYQQLBfElW9TIY2XMiLQ==
+RMD160 (p7zip_4.58_src_all.tar.bz2) = LDGrZXJ13AHS0jxd4jJ9XuRvToo=
+SHA1 (p7zip_4.58_src_all.tar.bz2) = dSW7sS7JQYbp5A02FM39X29jyrY=
+SHA256 (p7zip_4.58_src_all.tar.bz2) =
UjkVWbd4LSutRbeDV56pgl8oZwum8jT9DZJIrz6Cvt0=
+SIZE (p7zip_4.58_src_all.tar.bz2) = 1948207
Index: patches/patch-install_sh
===================================================================
RCS file: /cvs/ports/archivers/p7zip/patches/patch-install_sh,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 patch-install_sh
--- patches/patch-install_sh 20 Apr 2007 17:50:05 -0000 1.1.1.1
+++ patches/patch-install_sh 8 Jun 2008 15:52:31 -0000
@@ -1,6 +1,6 @@
$OpenBSD: patch-install_sh,v 1.1.1.1 2007/04/20 17:50:05 steven Exp $
---- install.sh.orig Tue Jun 27 23:09:12 2006
-+++ install.sh Wed Jan 10 19:27:47 2007
+--- install.sh.orig Sun Mar 2 08:35:05 2008
++++ install.sh Sun Jun 8 11:52:15 2008
@@ -1,14 +1,14 @@
#! /bin/sh
@@ -11,25 +11,25 @@
# DEST_HOME=${HOME}/INSTALL/usr/local
DEST_BIN=${DEST_HOME}/bin
DEST_SHARE=${DEST_HOME}/lib/p7zip
- DEST_SHARE_DOC=${DEST_HOME}/share/doc/p7zip
DEST_MAN=${DEST_HOME}/man
+ DEST_SHARE_DOC=${DEST_HOME}/share/doc/p7zip
-DEST_DIR=
+DEST_DIR=${DESTDIR}
- [ "$1" ] && DEST_BIN=$1
- [ "$2" ] && DEST_SHARE=$2
- [ "$3" ] && DEST_MAN=$3
+ [ "$1" ] && DEST_BIN="$1"
+ [ "$2" ] && DEST_SHARE="$2"
+ [ "$3" ] && DEST_MAN="$3"
@@ -163,10 +163,10 @@ fi
if [ -d DOCS ]
then
- echo "- installing HTML help in ${DEST_DIR}${DEST_SHARE_DOC}/DOCS"
+ echo "- installing HTML help in ${DEST_DIR}${DEST_SHARE_DOC}"
- mkdir -p ${DEST_DIR}${DEST_SHARE_DOC}
-- cp -r DOCS ${DEST_DIR}${DEST_SHARE_DOC}/DOCS
-- find ${DEST_DIR}${DEST_SHARE_DOC}/DOCS -type d -exec chmod 555 {} \;
-- find ${DEST_DIR}${DEST_SHARE_DOC}/DOCS -type f -exec chmod 444 {} \;
-+ cp -r DOCS/* ${DEST_DIR}${DEST_SHARE_DOC}
-+ find ${DEST_DIR}${DEST_SHARE_DOC} -type d -exec chmod 555 {} \;
-+ find ${DEST_DIR}${DEST_SHARE_DOC} -type f -exec chmod 444 {} \;
+ mkdir -p "${DEST_DIR}${DEST_SHARE_DOC}"
+- cp -r DOCS "${DEST_DIR}${DEST_SHARE_DOC}/DOCS"
+- find "${DEST_DIR}${DEST_SHARE_DOC}/DOCS" -type d -exec chmod 555 {} \;
+- find "${DEST_DIR}${DEST_SHARE_DOC}/DOCS" -type f -exec chmod 444 {} \;
++ cp -r DOCS "${DEST_DIR}${DEST_SHARE_DOC}"
++ find "${DEST_DIR}${DEST_SHARE_DOC}" -type d -exec chmod 555 {} \;
++ find "${DEST_DIR}${DEST_SHARE_DOC}" -type f -exec chmod 444 {} \;
fi
Index: patches/patch-makefile_openbsd
===================================================================
RCS file: /cvs/ports/archivers/p7zip/patches/patch-makefile_openbsd,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 patch-makefile_openbsd
--- patches/patch-makefile_openbsd 20 Apr 2007 17:50:05 -0000 1.1.1.1
+++ patches/patch-makefile_openbsd 8 Jun 2008 15:52:24 -0000
@@ -1,8 +1,8 @@
$OpenBSD: patch-makefile_openbsd,v 1.1.1.1 2007/04/20 17:50:05 steven Exp $
---- makefile.openbsd.orig Fri May 19 19:52:42 2006
-+++ makefile.openbsd Mon Apr 16 09:52:33 2007
-@@ -3,17 +3,17 @@
- # LITTLE_ENDIAN and BIG_ENDIAN are already defined by the system headers
+--- makefile.openbsd.orig Wed Aug 8 05:15:29 2007
++++ makefile.openbsd Sun Jun 8 11:50:18 2008
+@@ -2,17 +2,17 @@
+ # makefile for OpenBSD (x86, PPC, alpha ...)
#
-OPTFLAGS=-O
Index: pkg/PLIST-main
===================================================================
RCS file: /cvs/ports/archivers/p7zip/pkg/PLIST-main,v
retrieving revision 1.5
diff -u -r1.5 PLIST-main
--- pkg/PLIST-main 16 Dec 2007 11:22:29 -0000 1.5
+++ pkg/PLIST-main 8 Jun 2008 16:09:12 -0000
@@ -3,64 +3,66 @@
bin/7za
bin/7zr
lib/p7zip/
-lib/p7zip/7z
[EMAIL PROTECTED] lib/p7zip/7z
lib/p7zip/7z.so
-lib/p7zip/7zCon.sfx
-lib/p7zip/7za
-lib/p7zip/7zr
[EMAIL PROTECTED] lib/p7zip/7zCon.sfx
[EMAIL PROTECTED] lib/p7zip/7za
[EMAIL PROTECTED] lib/p7zip/7zr
lib/p7zip/Codecs/
@man man/man1/7z.1
@man man/man1/7za.1
@man man/man1/7zr.1
share/doc/p7zip/
-share/doc/p7zip/7zC.txt
-share/doc/p7zip/7zFormat.txt
share/doc/p7zip/ChangeLog
-share/doc/p7zip/License.txt
-share/doc/p7zip/MANUAL/
-share/doc/p7zip/MANUAL/commands/
-share/doc/p7zip/MANUAL/commands/add.htm
-share/doc/p7zip/MANUAL/commands/bench.htm
-share/doc/p7zip/MANUAL/commands/delete.htm
-share/doc/p7zip/MANUAL/commands/extract.htm
-share/doc/p7zip/MANUAL/commands/extract_full.htm
-share/doc/p7zip/MANUAL/commands/index.htm
-share/doc/p7zip/MANUAL/commands/list.htm
-share/doc/p7zip/MANUAL/commands/style.css
-share/doc/p7zip/MANUAL/commands/test.htm
-share/doc/p7zip/MANUAL/commands/update.htm
-share/doc/p7zip/MANUAL/exit_codes.htm
-share/doc/p7zip/MANUAL/index.htm
-share/doc/p7zip/MANUAL/style.css
-share/doc/p7zip/MANUAL/switches/
-share/doc/p7zip/MANUAL/switches/ar_exclude.htm
-share/doc/p7zip/MANUAL/switches/ar_include.htm
-share/doc/p7zip/MANUAL/switches/ar_no.htm
-share/doc/p7zip/MANUAL/switches/charset.htm
-share/doc/p7zip/MANUAL/switches/exclude.htm
-share/doc/p7zip/MANUAL/switches/include.htm
-share/doc/p7zip/MANUAL/switches/index.htm
-share/doc/p7zip/MANUAL/switches/list_tech.htm
-share/doc/p7zip/MANUAL/switches/method.htm
-share/doc/p7zip/MANUAL/switches/output_dir.htm
-share/doc/p7zip/MANUAL/switches/overwrite.htm
-share/doc/p7zip/MANUAL/switches/password.htm
-share/doc/p7zip/MANUAL/switches/recurse.htm
-share/doc/p7zip/MANUAL/switches/sfx.htm
-share/doc/p7zip/MANUAL/switches/ssc.htm
-share/doc/p7zip/MANUAL/switches/stdin.htm
-share/doc/p7zip/MANUAL/switches/stdout.htm
-share/doc/p7zip/MANUAL/switches/stop_switch.htm
-share/doc/p7zip/MANUAL/switches/style.css
-share/doc/p7zip/MANUAL/switches/type.htm
-share/doc/p7zip/MANUAL/switches/update.htm
-share/doc/p7zip/MANUAL/switches/volume.htm
-share/doc/p7zip/MANUAL/switches/working_dir.htm
-share/doc/p7zip/MANUAL/switches/yes.htm
-share/doc/p7zip/MANUAL/syntax.htm
-share/doc/p7zip/Methods.txt
+share/doc/p7zip/DOCS/
+share/doc/p7zip/DOCS/7zC.txt
+share/doc/p7zip/DOCS/7zFormat.txt
+share/doc/p7zip/DOCS/License.txt
+share/doc/p7zip/DOCS/MANUAL/
+share/doc/p7zip/DOCS/MANUAL/commands/
+share/doc/p7zip/DOCS/MANUAL/commands/add.htm
+share/doc/p7zip/DOCS/MANUAL/commands/bench.htm
+share/doc/p7zip/DOCS/MANUAL/commands/delete.htm
+share/doc/p7zip/DOCS/MANUAL/commands/extract.htm
+share/doc/p7zip/DOCS/MANUAL/commands/extract_full.htm
+share/doc/p7zip/DOCS/MANUAL/commands/index.htm
+share/doc/p7zip/DOCS/MANUAL/commands/list.htm
+share/doc/p7zip/DOCS/MANUAL/commands/style.css
+share/doc/p7zip/DOCS/MANUAL/commands/test.htm
+share/doc/p7zip/DOCS/MANUAL/commands/update.htm
+share/doc/p7zip/DOCS/MANUAL/exit_codes.htm
+share/doc/p7zip/DOCS/MANUAL/index.htm
+share/doc/p7zip/DOCS/MANUAL/style.css
+share/doc/p7zip/DOCS/MANUAL/switches/
+share/doc/p7zip/DOCS/MANUAL/switches/ar_exclude.htm
+share/doc/p7zip/DOCS/MANUAL/switches/ar_include.htm
+share/doc/p7zip/DOCS/MANUAL/switches/ar_no.htm
+share/doc/p7zip/DOCS/MANUAL/switches/charset.htm
+share/doc/p7zip/DOCS/MANUAL/switches/exclude.htm
+share/doc/p7zip/DOCS/MANUAL/switches/include.htm
+share/doc/p7zip/DOCS/MANUAL/switches/index.htm
+share/doc/p7zip/DOCS/MANUAL/switches/list_tech.htm
+share/doc/p7zip/DOCS/MANUAL/switches/method.htm
+share/doc/p7zip/DOCS/MANUAL/switches/output_dir.htm
+share/doc/p7zip/DOCS/MANUAL/switches/overwrite.htm
+share/doc/p7zip/DOCS/MANUAL/switches/password.htm
+share/doc/p7zip/DOCS/MANUAL/switches/recurse.htm
+share/doc/p7zip/DOCS/MANUAL/switches/sfx.htm
+share/doc/p7zip/DOCS/MANUAL/switches/ssc.htm
+share/doc/p7zip/DOCS/MANUAL/switches/stdin.htm
+share/doc/p7zip/DOCS/MANUAL/switches/stdout.htm
+share/doc/p7zip/DOCS/MANUAL/switches/stop_switch.htm
+share/doc/p7zip/DOCS/MANUAL/switches/style.css
+share/doc/p7zip/DOCS/MANUAL/switches/type.htm
+share/doc/p7zip/DOCS/MANUAL/switches/update.htm
+share/doc/p7zip/DOCS/MANUAL/switches/volume.htm
+share/doc/p7zip/DOCS/MANUAL/switches/working_dir.htm
+share/doc/p7zip/DOCS/MANUAL/switches/yes.htm
+share/doc/p7zip/DOCS/MANUAL/syntax.htm
+share/doc/p7zip/DOCS/Methods.txt
+share/doc/p7zip/DOCS/copying.txt
+share/doc/p7zip/DOCS/history.txt
+share/doc/p7zip/DOCS/lzma.txt
+share/doc/p7zip/DOCS/readme.txt
+share/doc/p7zip/DOCS/unRarLicense.txt
share/doc/p7zip/README
-share/doc/p7zip/copying.txt
-share/doc/p7zip/history.txt
-share/doc/p7zip/lzma.txt
-share/doc/p7zip/readme.txt
Index: pkg/PLIST-rar
===================================================================
RCS file: /cvs/ports/archivers/p7zip/pkg/PLIST-rar,v
retrieving revision 1.2
diff -u -r1.2 PLIST-rar
--- pkg/PLIST-rar 8 May 2007 17:59:15 -0000 1.2
+++ pkg/PLIST-rar 8 Jun 2008 16:09:12 -0000
@@ -1,3 +1,2 @@
@comment $OpenBSD: PLIST-rar,v 1.2 2007/05/08 17:59:15 naddy Exp $
lib/p7zip/Codecs/Rar29.so
-share/doc/p7zip/unRarLicense.txt