Date: Fri, 16 Oct 2015 14:38:46 +0000 (UTC) From: Frederic Culot <culot@FreeBSD.org> 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 Message-ID: <201510161438.t9GEck85056389@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510161438.t9GEck85056389>