From owner-svn-ports-all@FreeBSD.ORG Tue Nov 4 16:57:22 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A07C66D; Tue, 4 Nov 2014 16:57:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75A3BDBD; Tue, 4 Nov 2014 16:57:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA4GvMZS084451; Tue, 4 Nov 2014 16:57:22 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA4GvKu8084445; Tue, 4 Nov 2014 16:57:20 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201411041657.sA4GvKu8084445@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 4 Nov 2014 16:57:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372154 - in head/archivers: . atool atool/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Nov 2014 16:57:22 -0000 Author: marino Date: Tue Nov 4 16:57:20 2014 New Revision: 372154 URL: https://svnweb.freebsd.org/changeset/ports/372154 QAT: https://qat.redports.org/buildarchive/r372154/ Log: Add new port archivers/atool PR: 194082 Submitted by: Matteo Cypriani atool is a script for managing file archives of various types (tar, tar+gzip, zip, etc.). It provides the following commands: * aunpack: extract an archive, avoiding tar bombs * als: list the contents of an archive * acat: extract files to the standard output * apack: create an archive Optional dependencies: lbzip2 or pbzip2, lzip, plzip, lzop, lzma, zip, unzip, unrar, lha, unace, arj, arc, nomarch, p7zip, unalz. Added: head/archivers/atool/ head/archivers/atool/Makefile (contents, props changed) head/archivers/atool/distinfo (contents, props changed) head/archivers/atool/files/ head/archivers/atool/files/patch-configure (contents, props changed) head/archivers/atool/pkg-descr (contents, props changed) head/archivers/atool/pkg-plist (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Tue Nov 4 16:46:23 2014 (r372153) +++ head/archivers/Makefile Tue Nov 4 16:57:20 2014 (r372154) @@ -9,6 +9,7 @@ SUBDIR += arc SUBDIR += arj SUBDIR += ark + SUBDIR += atool SUBDIR += bicom SUBDIR += bzip SUBDIR += bzip2 Added: head/archivers/atool/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/atool/Makefile Tue Nov 4 16:57:20 2014 (r372154) @@ -0,0 +1,18 @@ +# Created by: Matteo Cypriani +# $FreeBSD$ + +PORTNAME= atool +PORTVERSION= 0.39.0 +CATEGORIES= archivers +MASTER_SITES= SAVANNAH + +MAINTAINER= mcy@lm7.fr +COMMENT= Manage file archives of various types + +LICENSE= GPLv2 + +GNU_CONFIGURE= yes +USES= gmake perl5 +USE_PERL5= build run + +.include Added: head/archivers/atool/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/atool/distinfo Tue Nov 4 16:57:20 2014 (r372154) @@ -0,0 +1,2 @@ +SHA256 (atool-0.39.0.tar.gz) = aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b +SIZE (atool-0.39.0.tar.gz) = 119307 Added: head/archivers/atool/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/atool/files/patch-configure Tue Nov 4 16:57:20 2014 (r372154) @@ -0,0 +1,11 @@ +--- configure.orig 2012-02-21 18:14:06 UTC ++++ configure +@@ -2261,7 +2261,7 @@ + + + eval `$PERL -V:startperl` +-if test "${startperl:0:1}" = "#" ; then ++if test "$(echo ${startperl} | awk '{ string=substr($0, 1, 1); print string; }')" = "#" ; then + startperl="\\$startperl" + fi + PERL_SHEBANG=$startperl Added: head/archivers/atool/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/atool/pkg-descr Tue Nov 4 16:57:20 2014 (r372154) @@ -0,0 +1,12 @@ +atool is a script for managing file archives of various types (tar, +tar+gzip, zip, etc.). It provides the following commands: + + * aunpack: extract an archive, avoiding tar bombs + * als: list the contents of an archive + * acat: extract files to the standard output + * apack: create an archive + +Optional dependencies: lbzip2 or pbzip2, lzip, plzip, lzop, lzma, zip, +unzip, unrar, lha, unace, arj, arc, nomarch, p7zip, unalz. + +WWW: http://www.nongnu.org/atool/ Added: head/archivers/atool/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/atool/pkg-plist Tue Nov 4 16:57:20 2014 (r372154) @@ -0,0 +1,14 @@ +bin/acat +bin/adiff +bin/als +bin/apack +bin/arepack +bin/atool +bin/aunpack +man/man1/acat.1.gz +man/man1/adiff.1.gz +man/man1/als.1.gz +man/man1/apack.1.gz +man/man1/arepack.1.gz +man/man1/atool.1.gz +man/man1/aunpack.1.gz