From owner-svn-ports-all@FreeBSD.ORG Sun Aug 25 05:15:41 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id EB2F8DC4; Sun, 25 Aug 2013 05:15:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D81E6283F; Sun, 25 Aug 2013 05:15:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7P5Fe96035456; Sun, 25 Aug 2013 05:15:40 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7P5FdZd035444; Sun, 25 Aug 2013 05:15:39 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201308250515.r7P5FdZd035444@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Aug 2013 05:15:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325326 - in head/archivers: . p5-Archive-Any-Lite 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.14 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: Sun, 25 Aug 2013 05:15:41 -0000 Author: sunpoet Date: Sun Aug 25 05:15:39 2013 New Revision: 325326 URL: http://svnweb.freebsd.org/changeset/ports/325326 Log: - Add p5-Archive-Any-Lite 0.07 Archive::Any::Lite is a fork of Archive::Any. The main difference is this works properly even when you fork(), and may require less memory to extract a tarball. On the other hand, this isn't pluggable (this only supports file formats used in the CPAN toolchains), and this doesn't check mime types (at least as of this writing). WWW: http://search.cpan.org/dist/Archive-Any-Lite/ Added: head/archivers/p5-Archive-Any-Lite/ head/archivers/p5-Archive-Any-Lite/Makefile (contents, props changed) head/archivers/p5-Archive-Any-Lite/distinfo (contents, props changed) head/archivers/p5-Archive-Any-Lite/pkg-descr (contents, props changed) head/archivers/p5-Archive-Any-Lite/pkg-plist (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Sun Aug 25 04:29:02 2013 (r325325) +++ head/archivers/Makefile Sun Aug 25 05:15:39 2013 (r325326) @@ -88,6 +88,7 @@ SUBDIR += ocaml-bz2 SUBDIR += ocaml-zip SUBDIR += p5-Archive-Any + SUBDIR += p5-Archive-Any-Lite SUBDIR += p5-Archive-Any-Plugin-Rar SUBDIR += p5-Archive-Extract SUBDIR += p5-Archive-Extract-Libarchive Added: head/archivers/p5-Archive-Any-Lite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/p5-Archive-Any-Lite/Makefile Sun Aug 25 05:15:39 2013 (r325326) @@ -0,0 +1,27 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Archive-Any-Lite +PORTVERSION= 0.07 +CATEGORIES= archivers perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Simple CPAN package extractor + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Archive-Zip>=0:${PORTSDIR}/archivers/p5-Archive-Zip +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Pod>=1.18:${PORTSDIR}/devel/p5-Test-Pod \ + p5-Test-Pod-Coverage>=1.04:${PORTSDIR}/devel/p5-Test-Pod-Coverage \ + p5-Test-UseAllModules>=0.10:${PORTSDIR}/devel/p5-Test-UseAllModules + +USE_PERL5= configure +USES= perl5 + +MAN3= Archive::Any::Lite.3 + +.include Added: head/archivers/p5-Archive-Any-Lite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/p5-Archive-Any-Lite/distinfo Sun Aug 25 05:15:39 2013 (r325326) @@ -0,0 +1,2 @@ +SHA256 (Archive-Any-Lite-0.07.tar.gz) = d70407c97785cc63c517cf46a9f25325fb140efbf573a3b688fec8cf5c23b943 +SIZE (Archive-Any-Lite-0.07.tar.gz) = 21207 Added: head/archivers/p5-Archive-Any-Lite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/p5-Archive-Any-Lite/pkg-descr Sun Aug 25 05:15:39 2013 (r325326) @@ -0,0 +1,7 @@ +Archive::Any::Lite is a fork of Archive::Any. The main difference is this works +properly even when you fork(), and may require less memory to extract a tarball. +On the other hand, this isn't pluggable (this only supports file formats used in +the CPAN toolchains), and this doesn't check mime types (at least as of this +writing). + +WWW: http://search.cpan.org/dist/Archive-Any-Lite/ Added: head/archivers/p5-Archive-Any-Lite/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/p5-Archive-Any-Lite/pkg-plist Sun Aug 25 05:15:39 2013 (r325326) @@ -0,0 +1,7 @@ +%%SITE_PERL%%/Archive/Any/Lite.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Any/Lite/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Any/Lite +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Any +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive +@dirrmtry %%SITE_PERL%%/Archive/Any +@dirrmtry %%SITE_PERL%%/Archive