From owner-svn-ports-head@FreeBSD.ORG Wed Dec 31 14:15:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D566DC; Wed, 31 Dec 2014 14:15:57 +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 4F30864FD6; Wed, 31 Dec 2014 14:15:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBVEFvbE067591; Wed, 31 Dec 2014 14:15:57 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBVEFuYk067588; Wed, 31 Dec 2014 14:15:56 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201412311415.sBVEFuYk067588@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 31 Dec 2014 14:15:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375886 - in head/devel/p5-Git-PurePerl: . 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-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Dec 2014 14:15:57 -0000 Author: wen Date: Wed Dec 31 14:15:55 2014 New Revision: 375886 URL: https://svnweb.freebsd.org/changeset/ports/375886 QAT: https://qat.redports.org/buildarchive/r375886/ Log: - Add missing DEPENDS - Add LICENSE - Add a FreeBSD patch to provide a relevant message when running perl built-in tests from within a poudriere jail, which does not have connection to the Internet. PR: 194873 Submitted by: svysh.fbsd@gmail.com Added: head/devel/p5-Git-PurePerl/files/ head/devel/p5-Git-PurePerl/files/patch-t_protocol__gpp.t (contents, props changed) Modified: head/devel/p5-Git-PurePerl/Makefile Modified: head/devel/p5-Git-PurePerl/Makefile ============================================================================== --- head/devel/p5-Git-PurePerl/Makefile Wed Dec 31 13:49:06 2014 (r375885) +++ head/devel/p5-Git-PurePerl/Makefile Wed Dec 31 14:15:55 2014 (r375886) @@ -3,7 +3,7 @@ PORTNAME= Git-PurePerl PORTVERSION= 0.50 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:BROQ @@ -12,7 +12,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pure Perl interface to Git repositories +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Archive-Extract>=0:${PORTSDIR}/archivers/p5-Archive-Extract \ + p5-Config-GitLike>=0:${PORTSDIR}/devel/p5-Config-GitLike \ p5-Data-Stream-Bulk>=0:${PORTSDIR}/devel/p5-Data-Stream-Bulk \ p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \ p5-MooseX-StrictConstructor>=0:${PORTSDIR}/devel/p5-MooseX-StrictConstructor \ @@ -20,10 +24,15 @@ BUILD_DEPENDS= p5-Archive-Extract>=0:${P p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ p5-File-Find-Rule>0:${PORTSDIR}/devel/p5-File-Find-Rule \ - p5-IO-Digest>0:${PORTSDIR}/devel/p5-IO-Digest + p5-IO-Digest>0:${PORTSDIR}/devel/p5-IO-Digest \ + p5-namespace-autoclean>=0:${PORTSDIR}/devel/p5-namespace-autoclean RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-utf8>=0:${PORTSDIR}/devel/p5-Test-utf8 USES= perl5 USE_PERL5= configure +NO_ARCH= yes + +#pre-install: test .include Added: head/devel/p5-Git-PurePerl/files/patch-t_protocol__gpp.t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Git-PurePerl/files/patch-t_protocol__gpp.t Wed Dec 31 14:15:55 2014 (r375886) @@ -0,0 +1,16 @@ +--- t/protocol_gpp.t.orig 2013-08-26 11:24:05 UTC ++++ t/protocol_gpp.t +@@ -6,6 +6,13 @@ use IO::File; + use Path::Class; + use Test::More; + ++my $socket = IO::Socket::INET->new("www.google.com:80"); ++if ($socket) { ++ close ($socket); ++} else { ++ plan skip_all => 'No Internet connection?'; ++} ++ + my $directory = 'test-protocol'; + dir($directory)->rmtree; +