From owner-svn-ports-head@freebsd.org Fri Oct 16 14:38:47 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7202EA162B0; Fri, 16 Oct 2015 14:38:47 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 4B0BCF67; Fri, 16 Oct 2015 14:38:47 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9GEckBL056393; Fri, 16 Oct 2015 14:38:46 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9GEck85056389; Fri, 16 Oct 2015 14:38:46 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201510161438.t9GEck85056389@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Fri, 16 Oct 2015 14:38:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399483 - in head/devel/p5-Geo-ShapeFile: . 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.20 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: Fri, 16 Oct 2015 14:38:47 -0000 Author: culot Date: Fri Oct 16 14:38:45 2015 New Revision: 399483 URL: https://svnweb.freebsd.org/changeset/ports/399483 Log: - Update to 2.60 - Add LICENSE (Artistic 1 & GPL 1) - Add NO_ARCH - Add patch to be able to run tests without the need to install rlib, which is not in ports and which can easily be replaced by the FindBin core module (see http://search.cpan.org/~gaas/rlib-0.01/rlib.pm#DESCRIPTION) Changes: http://search.cpan.org/dist/Geo-ShapeFile/Changes Added: head/devel/p5-Geo-ShapeFile/files/ head/devel/p5-Geo-ShapeFile/files/patch-t_main__tests.t (contents, props changed) Modified: head/devel/p5-Geo-ShapeFile/Makefile head/devel/p5-Geo-ShapeFile/distinfo head/devel/p5-Geo-ShapeFile/pkg-plist Modified: head/devel/p5-Geo-ShapeFile/Makefile ============================================================================== --- head/devel/p5-Geo-ShapeFile/Makefile Fri Oct 16 14:19:31 2015 (r399482) +++ head/devel/p5-Geo-ShapeFile/Makefile Fri Oct 16 14:38:45 2015 (r399483) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Geo-ShapeFile -PORTVERSION= 2.52 -PORTREVISION= 1 +PORTVERSION= 2.60 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,6 +10,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Perl extension for handling ESRI GIS Shapefiles +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Tree-R>0:${PORTSDIR}/devel/p5-Tree-R \ + p5-autovivification>0:${PORTSDIR}/devel/p5-autovivification +RUN_DEPENDS:= ${BUILD_DEPENDS} + +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Geo-ShapeFile/distinfo ============================================================================== --- head/devel/p5-Geo-ShapeFile/distinfo Fri Oct 16 14:19:31 2015 (r399482) +++ head/devel/p5-Geo-ShapeFile/distinfo Fri Oct 16 14:38:45 2015 (r399483) @@ -1,2 +1,2 @@ -SHA256 (Geo-ShapeFile-2.52.tar.gz) = 6ccc2bd992d8474f473b3b33064baabd906d5a45afc75db035ab0136058a1edb -SIZE (Geo-ShapeFile-2.52.tar.gz) = 278581 +SHA256 (Geo-ShapeFile-2.60.tar.gz) = 90ad66df2a408d4ee91ba3e7b382fe40056a086c1abf51cd48ce2cde2c9047bc +SIZE (Geo-ShapeFile-2.60.tar.gz) = 331941 Added: head/devel/p5-Geo-ShapeFile/files/patch-t_main__tests.t ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Geo-ShapeFile/files/patch-t_main__tests.t Fri Oct 16 14:38:45 2015 (r399483) @@ -0,0 +1,14 @@ +--- t/main_tests.t.orig 2015-10-16 16:34:06.906634577 +0200 ++++ t/main_tests.t 2015-10-16 16:34:56.598631573 +0200 +@@ -3,7 +3,10 @@ + use Test::More; + use strict; + use warnings; +-use rlib '../lib', './lib'; ++#use rlib '../lib', './lib'; ++use FindBin; ++use lib "$FindBin::Bin/lib"; ++use lib "$FindBin::Bin/../lib"; + + use Geo::ShapeFile; + use Geo::ShapeFile::Shape; Modified: head/devel/p5-Geo-ShapeFile/pkg-plist ============================================================================== --- head/devel/p5-Geo-ShapeFile/pkg-plist Fri Oct 16 14:19:31 2015 (r399482) +++ head/devel/p5-Geo-ShapeFile/pkg-plist Fri Oct 16 14:38:45 2015 (r399483) @@ -1,6 +1,8 @@ %%SITE_PERL%%/Geo/ShapeFile.pm %%SITE_PERL%%/Geo/ShapeFile/Point.pm %%SITE_PERL%%/Geo/ShapeFile/Shape.pm +%%SITE_PERL%%/Geo/ShapeFile/Shape/Index.pm %%PERL5_MAN3%%/Geo::ShapeFile.3.gz %%PERL5_MAN3%%/Geo::ShapeFile::Point.3.gz %%PERL5_MAN3%%/Geo::ShapeFile::Shape.3.gz +%%PERL5_MAN3%%/Geo::ShapeFile::Shape::Index.3.gz