diff options
Diffstat (limited to 'dev-perl/Dist-Zilla')
-rw-r--r-- | dev-perl/Dist-Zilla/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Dist-Zilla/files/Dist-Zilla-6.10.0-perl526.patch | 58 |
2 files changed, 0 insertions, 59 deletions
diff --git a/dev-perl/Dist-Zilla/Manifest b/dev-perl/Dist-Zilla/Manifest index 853db2294793..cd60c912c86c 100644 --- a/dev-perl/Dist-Zilla/Manifest +++ b/dev-perl/Dist-Zilla/Manifest @@ -1,5 +1,4 @@ AUX Dist-Zilla-6.015-authordeps-missing.patch 1378 BLAKE2B 4666036c22cb9c2cb869541560b9c16b2c259bedd3a43314e13ed1c4ba7d15dbb9729451e33982c6b78da1c5a03c99e304d7f8ea8759279255af117c3e9258da SHA512 1abd7648457e0d52782bfb9ac7636b07cf725e2328b08a059a19d297b9865a0c06ef287b45f871401bdf39e93b5cbc4f42d8a1aafa8e38ce617112b23d49e4f9 -AUX Dist-Zilla-6.10.0-perl526.patch 1963 BLAKE2B 23237b2231fa160beca39c06d15bd82148476c2b3c44bdf7509fcd7c52931aeda4300bbc64c4f50257f26a8323f4ec0fa824e15a78853455a980c22ef23f2cee SHA512 bc2058c71160be5cd191e46e19d245070d2f4f12bc2f067c702757e30394aa1bc986d055f40303716e3da85bc48e40c31683cf21bf495da634f983227c20baa7 DIST Dist-Zilla-6.015.tar.gz 202822 BLAKE2B e26d50d7cf90940e3e003f1d056885481878aec8a2b16ed8413c237aeafb878bc002ee231a0edbdc4b5fd584480f1b245b3469a27a2c5edc93fd79a57de96dcf SHA512 956a32d2123fa371f2589f2d18d87b6408fd13ebdf0e711da4cac8ebc3dd82accf9e97d6dd577d69bf795c589b7246b9f9f1124835a6dcdb89730fdeec547715 DIST Dist-Zilla-6.017.tar.gz 203472 BLAKE2B dd51b8752780036f77916df16d2b0f780ec69027b33e5fd277afb3d60bab83c1ba55cf0f3076314888351e6e9164597bd4e096cf01c5e388a8964cfe9178b2c2 SHA512 08408d5c6112a682994609d29a50d42eb85ca8457db94dd3d37f6849a7ceb40d84b4bf212279cab885cb0c465fbfe709c3a995ceb086dfa47ebbe68af0d17e78 EBUILD Dist-Zilla-6.15.0-r1.ebuild 5086 BLAKE2B 2283b7e2fa7eb3d2e0a507795281612ff5f53158e07dd6ca2a71efcc23bd9cb7302ec14ce336c5500e5a48893e6208edb62f65b8b1f258a2ea6ec1ef631ce2fc SHA512 fe56e9bd3d41d3a92a1d58318adc4e36e7d2687d59e76b3afe06cb482863bb28c4e3b3beb71119c763873ae1ab29fb502b18732381fb8cb3e766b389be45e70d diff --git a/dev-perl/Dist-Zilla/files/Dist-Zilla-6.10.0-perl526.patch b/dev-perl/Dist-Zilla/files/Dist-Zilla-6.10.0-perl526.patch deleted file mode 100644 index ad908fa84a0e..000000000000 --- a/dev-perl/Dist-Zilla/files/Dist-Zilla-6.10.0-perl526.patch +++ /dev/null @@ -1,58 +0,0 @@ -From fda708069c3c3bdb2b6d8922b21eb604084d51e2 Mon Sep 17 00:00:00 2001 -From: Kent Fredric <kentnl@gentoo.org> -Date: Fri, 6 Oct 2017 22:32:36 +1300 -Subject: Keep dist-root in @INC beyond Perl 5.26 - -The only thing that makes sense is to ensure CWD of some description is -in @INC at some stage before plugins are actually loaded, because -that's the traditional expectation. - -Basically, this option is the only option that works. There's no viable -way to scope @INC changes to anything narrower without breaking the -usage entirely. - -There's no sane way to limit the depth of @INC changes either, even if -we wanted to. - -And if you have vulnerable code in your project source tree that you're -worried about, you're pretty much beyond screwed already, and you're -about to be screwing CPAN when you ship next, and no amount of @INC -magic will save you. - -Bug: https://bugs.gentoo.org/613586 -Bug: https://github.com/rjbs/Dist-Zilla/issues/581 -Bug: https://github.com/rjbs/Dist-Zilla/pull/590 -Bug: https://github.com/rjbs/Dist-Zilla/pull/600 ---- - lib/Dist/Zilla/Dist/Builder.pm | 1 + - lib/Dist/Zilla/Util/AuthorDeps.pm | 2 +- - 2 files changed, 2 insertions(+), 1 deletion(-) - -diff --git a/lib/Dist/Zilla/Dist/Builder.pm b/lib/Dist/Zilla/Dist/Builder.pm -index 2148eeb..6b8e301 100644 ---- a/lib/Dist/Zilla/Dist/Builder.pm -+++ b/lib/Dist/Zilla/Dist/Builder.pm -@@ -36,6 +36,7 @@ sub from_config { - $arg ||= {}; - - my $root = path($arg->{dist_root} || '.'); -+ unshift @INC, $root->absolute->stringify; - - my $sequence = $class->_load_config({ - root => $root, -diff --git a/lib/Dist/Zilla/Util/AuthorDeps.pm b/lib/Dist/Zilla/Util/AuthorDeps.pm -index 01a958e..cfcd62f 100644 ---- a/lib/Dist/Zilla/Util/AuthorDeps.pm -+++ b/lib/Dist/Zilla/Util/AuthorDeps.pm -@@ -105,7 +105,7 @@ sub extract_author_deps { - - if ($missing) { - require Module::Runtime; -- -+ unshift @INC, $root->absolute->stringify; - @packages = - grep { - $_ eq 'perl' --- -2.14.1 - |