aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorsunpoet <sunpoet@FreeBSD.org>2015-06-13 21:52:31 +0800
committersunpoet <sunpoet@FreeBSD.org>2015-06-13 21:52:31 +0800
commitc711449dcc1ba09f9bdc5aac8b15a2f8e4f0eb4b (patch)
treefbf8fff723e42518973bb035367df5177330f71f /devel
parenta5c0b65ed188fe5a2376a0b6a14d000a8911a7f4 (diff)
downloadfreebsd-ports-gnome-c711449dcc1ba09f9bdc5aac8b15a2f8e4f0eb4b.tar.gz
freebsd-ports-gnome-c711449dcc1ba09f9bdc5aac8b15a2f8e4f0eb4b.tar.zst
freebsd-ports-gnome-c711449dcc1ba09f9bdc5aac8b15a2f8e4f0eb4b.zip
- Update to 0.4214
- Add NO_ARCH Changes: http://search.cpan.org/dist/Module-Build/Changes
Diffstat (limited to 'devel')
-rw-r--r--devel/p5-Module-Build/Makefile3
-rw-r--r--devel/p5-Module-Build/distinfo4
-rw-r--r--devel/p5-Module-Build/files/patch-lib_Module_Build_Dumper.pm16
3 files changed, 4 insertions, 19 deletions
diff --git a/devel/p5-Module-Build/Makefile b/devel/p5-Module-Build/Makefile
index 83883f8adce6..7f64d30f2f03 100644
--- a/devel/p5-Module-Build/Makefile
+++ b/devel/p5-Module-Build/Makefile
@@ -6,7 +6,7 @@
# Mk/Uses/perl5.mk.
PORTNAME= Module-Build
-PORTVERSION= 0.4212
+PORTVERSION= 0.4214
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -22,6 +22,7 @@ TEST_DEPENDS= p5-Archive-Zip>=0:${PORTSDIR}/archivers/p5-Archive-Zip \
PORTSCOUT= skipv:0.31011,0.31012
+NO_ARCH= yes
USES= perl5
USE_PERL5= modbuild
diff --git a/devel/p5-Module-Build/distinfo b/devel/p5-Module-Build/distinfo
index a81696bf0e3e..f69cfaa339d1 100644
--- a/devel/p5-Module-Build/distinfo
+++ b/devel/p5-Module-Build/distinfo
@@ -1,2 +1,2 @@
-SHA256 (Module-Build-0.4212.tar.gz) = f4913b0b95065ad4666d69eed1ce93488a175eacd3b40e1e0c9c6b181f11e812
-SIZE (Module-Build-0.4212.tar.gz) = 304867
+SHA256 (Module-Build-0.4214.tar.gz) = c579488918cf4db84954a550c475272b3c25f5100c739339e91a65d7c055dc3f
+SIZE (Module-Build-0.4214.tar.gz) = 305051
diff --git a/devel/p5-Module-Build/files/patch-lib_Module_Build_Dumper.pm b/devel/p5-Module-Build/files/patch-lib_Module_Build_Dumper.pm
deleted file mode 100644
index 83ca9b004575..000000000000
--- a/devel/p5-Module-Build/files/patch-lib_Module_Build_Dumper.pm
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: output data in a stable order
- In order to make builds reproducible, we sort keys when dumping
- data.
-Author: Jérémy Bobbio <lunar@debian.org>
-
---- lib/Module/Build/Dumper.pm
-+++ lib/Module/Build/Dumper.pm
-@@ -12,7 +12,7 @@ use Data::Dumper;
- sub _data_dump {
- my ($self, $data) = @_;
- return ("do{ my "
-- . Data::Dumper->new([$data],['x'])->Purity(1)->Terse(0)->Dump()
-+ . Data::Dumper->new([$data],['x'])->Purity(1)->Terse(0)->Sortkeys(1)->Dump()
- . '$x; }')
- }
-