From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 32ED5139347 for ; Sun, 11 Jul 2021 14:43:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71B7EE0D35; Sun, 11 Jul 2021 14:43:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 55EF0E0D35 for ; Sun, 11 Jul 2021 14:43:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2023C342BA1 for ; Sun, 11 Jul 2021 14:43:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5FD37C2 for ; Sun, 11 Jul 2021 14:42:58 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626014572.0280699b496126352bbc9ded65e616eac4b35233.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Dist-Zilla/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Dist-Zilla/files/Dist-Zilla-6.10.0-perl526.patch X-VCS-Directories: dev-perl/Dist-Zilla/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 0280699b496126352bbc9ded65e616eac4b35233 X-VCS-Branch: master Date: Sun, 11 Jul 2021 14:42:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 70664a23-6cef-49b4-abab-4c63700ad14c X-Archives-Hash: d7d5b7430c64e17206b552edef0300c0 commit: 0280699b496126352bbc9ded65e616eac4b35233 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Jul 11 11:30:02 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Jul 11 14:42:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0280699b dev-perl/Dist-Zilla: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/21596 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/Dist-Zilla-6.10.0-perl526.patch | 58 ---------------------- 1 file changed, 58 deletions(-) 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 ad908fa84a0..00000000000 --- 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 -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 -