summaryrefslogtreecommitdiff
path: root/geography/p5-Geo-ShapeFile
diff options
context:
space:
mode:
authorwen <wen>2016-07-25 09:18:55 +0000
committerwen <wen>2016-07-25 09:18:55 +0000
commitcaf9cd9358f01445c3046bace004d508a3712392 (patch)
tree43366908482e53a6a7f5f7e56c91ee3cf6967446 /geography/p5-Geo-ShapeFile
parent165eeb67d273f19e84086c95e481237d1d2b172e (diff)
downloadpkgsrc-caf9cd9358f01445c3046bace004d508a3712392.tar.gz
Update to 2.61
Update DEPENDS Upstream changes: 2.61 2016-01-31 - Specify minimum Math::Trig version to avoid some cpantesters fails on pre5.8.9 perls on Cygwin.
Diffstat (limited to 'geography/p5-Geo-ShapeFile')
-rw-r--r--geography/p5-Geo-ShapeFile/Makefile10
-rw-r--r--geography/p5-Geo-ShapeFile/distinfo11
-rw-r--r--geography/p5-Geo-ShapeFile/patches/patch-t_main__tests.t17
3 files changed, 29 insertions, 9 deletions
diff --git a/geography/p5-Geo-ShapeFile/Makefile b/geography/p5-Geo-ShapeFile/Makefile
index fbf5d8aee46..a042cad8553 100644
--- a/geography/p5-Geo-ShapeFile/Makefile
+++ b/geography/p5-Geo-ShapeFile/Makefile
@@ -1,17 +1,19 @@
-# $NetBSD: Makefile,v 1.10 2016/06/08 19:23:52 wiz Exp $
+# $NetBSD: Makefile,v 1.11 2016/07/25 09:18:55 wen Exp $
#
-DISTNAME= Geo-ShapeFile-2.60
+DISTNAME= Geo-ShapeFile-2.61
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 2
CATEGORIES= geography perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Geo/}
MAINTAINER= wen@NetBSD.org
-HOMEPAGE= http://search.cpan.org/~jasonk/Geo-ShapeFile-2.52/lib/Geo/ShapeFile.pm
+HOMEPAGE= http://search.cpan.org/dist/Geo-ShapeFile/
COMMENT= Perl extension for handling ESRI GIS Shapefiles
LICENSE= ${PERL5_LICENSE}
+DEPENDS+= p5-Tree-R>=0:../../devel/p5-Tree-R
+DEPENDS+= p5-autovivification>=0:../../devel/p5-autovivification
+
PERL5_PACKLIST= auto/Geo/ShapeFile/.packlist
.include "../../lang/perl5/module.mk"
diff --git a/geography/p5-Geo-ShapeFile/distinfo b/geography/p5-Geo-ShapeFile/distinfo
index a5f819907c3..72199f80842 100644
--- a/geography/p5-Geo-ShapeFile/distinfo
+++ b/geography/p5-Geo-ShapeFile/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.3 2015/11/03 00:08:44 agc Exp $
+$NetBSD: distinfo,v 1.4 2016/07/25 09:18:55 wen Exp $
-SHA1 (Geo-ShapeFile-2.60.tar.gz) = 7b46492fc6318079d819ef7c36aceb6a65927135
-RMD160 (Geo-ShapeFile-2.60.tar.gz) = 1280ad08cfd91d3b52265156bae7e20a498afcee
-SHA512 (Geo-ShapeFile-2.60.tar.gz) = d9fbe383ab8b300a5bdb2f66806e6adfe41f9785c0185b68b252178381833779bbdff050332ee933caf878f44a14596dbad694bc702e51ce7345b278a8c6fa3d
-Size (Geo-ShapeFile-2.60.tar.gz) = 331941 bytes
+SHA1 (Geo-ShapeFile-2.61.tar.gz) = cb1c705cc498ab256b2672e424a4f83d8d3aae57
+RMD160 (Geo-ShapeFile-2.61.tar.gz) = adf5b8246c77c8dad33e2db3f952bd5e54c31e01
+SHA512 (Geo-ShapeFile-2.61.tar.gz) = f2923eac8b566a8e95b3706c88074191ee9d5a97f2706940fba6ba663277134888381b25fa8d42d5ee9f48c6ce1aab9d0411b7d652cef6033803b659d3e3b5b9
+Size (Geo-ShapeFile-2.61.tar.gz) = 332726 bytes
+SHA1 (patch-t_main__tests.t) = a750d7cad89c1f4100ed83219e956b1b81787e9f
diff --git a/geography/p5-Geo-ShapeFile/patches/patch-t_main__tests.t b/geography/p5-Geo-ShapeFile/patches/patch-t_main__tests.t
new file mode 100644
index 00000000000..b7a00fa235e
--- /dev/null
+++ b/geography/p5-Geo-ShapeFile/patches/patch-t_main__tests.t
@@ -0,0 +1,17 @@
+$NetBSD: patch-t_main__tests.t,v 1.1 2016/07/25 09:18:55 wen Exp $
+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
+The patch come from FreeBSD ports.
+--- t/main_tests.t.orig 2016-07-25 08:39:51.000000000 +0000
++++ t/main_tests.t
+@@ -3,7 +3,9 @@
+ use Test::More;
+ use strict;
+ use warnings;
+-use rlib '../lib', './lib';
++use FindBin;
++use lib "$FindBin::Bin/lib";
++use lib "$FindBin::Bin/../lib";
+
+ use Geo::ShapeFile;
+ use Geo::ShapeFile::Shape;