diff options
author | ryoon <ryoon@pkgsrc.org> | 2017-06-07 14:29:59 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2017-06-07 14:29:59 +0000 |
commit | 6592491ee3520e58e102676a59d2f136e905faef (patch) | |
tree | daa25756ef19d632e148a213a041a66a3bd9c6a9 /databases/p5-DBIx-Class | |
parent | 14e786163f0f5bd63d9933625720285102d25754 (diff) | |
download | pkgsrc-6592491ee3520e58e102676a59d2f136e905faef.tar.gz |
Fix build with Perl 5.26.0
Diffstat (limited to 'databases/p5-DBIx-Class')
-rw-r--r-- | databases/p5-DBIx-Class/distinfo | 3 | ||||
-rw-r--r-- | databases/p5-DBIx-Class/patches/patch-Makefile.PL | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/databases/p5-DBIx-Class/distinfo b/databases/p5-DBIx-Class/distinfo index 086f8ff91cc..84c28f0d683 100644 --- a/databases/p5-DBIx-Class/distinfo +++ b/databases/p5-DBIx-Class/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.28 2016/07/16 02:26:58 wen Exp $ +$NetBSD: distinfo,v 1.29 2017/06/07 14:34:46 ryoon Exp $ SHA1 (DBIx-Class-0.082840.tar.gz) = d3ed27de4ee2c60e4c05656d1f16c4281be63bf7 RMD160 (DBIx-Class-0.082840.tar.gz) = 707e62c3c937836190c9a8482617ec381f431c25 SHA512 (DBIx-Class-0.082840.tar.gz) = 0ae0c724c57cd2b62b9d711633bfc2ba4320c15f6e9d0253381c9ffae495355e32888ec87d6a85c85000d434cedb51789f4b7807da157de8b08723333b66a0d2 Size (DBIx-Class-0.082840.tar.gz) = 860243 bytes +SHA1 (patch-Makefile.PL) = 1eff961166d6b3e42d6beac09b94780d6b4146f3 diff --git a/databases/p5-DBIx-Class/patches/patch-Makefile.PL b/databases/p5-DBIx-Class/patches/patch-Makefile.PL new file mode 100644 index 00000000000..df85e4ab216 --- /dev/null +++ b/databases/p5-DBIx-Class/patches/patch-Makefile.PL @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.PL,v 1.1 2017/06/07 14:34:47 ryoon Exp $ + +* Fix build with Perl 5.26.0 + +--- Makefile.PL.orig 2016-06-20 06:55:46.000000000 +0000 ++++ Makefile.PL +@@ -2,6 +2,8 @@ use strict; + use warnings; + + use 5.008001; ++use FindBin; ++use lib $FindBin::Bin; + use inc::Module::Install 1.06; + BEGIN { makemaker_args( NORECURS => 1 ) } # needs to happen early for old EUMM + |