Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Dist-Zilla-Plugin-NextVersion-Semantic/files/
Date: Mon, 01 Nov 2021 17:56:02
Message-Id: 1635789341.29dc55e641407f10cf230f3023380631d138d3a3.conikost@gentoo
1 commit: 29dc55e641407f10cf230f3023380631d138d3a3
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Mon Nov 1 16:22:00 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 1 17:55:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29dc55e6
7
8 dev-perl/Dist-Zilla-Plugin-NextVersion-Semantic: remove unused patch(es)
9
10 Closes: https://github.com/gentoo/gentoo/pull/22783
11 Package-Manager: Portage-3.0.28, Repoman-3.0.3
12 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 ...n-NextVersion-Semantic-0.2.5-no-V-in-test.patch | 40 ----------------------
16 1 file changed, 40 deletions(-)
17
18 diff --git a/dev-perl/Dist-Zilla-Plugin-NextVersion-Semantic/files/Dist-Zilla-Plugin-NextVersion-Semantic-0.2.5-no-V-in-test.patch b/dev-perl/Dist-Zilla-Plugin-NextVersion-Semantic/files/Dist-Zilla-Plugin-NextVersion-Semantic-0.2.5-no-V-in-test.patch
19 deleted file mode 100644
20 index ab09936f283..00000000000
21 --- a/dev-perl/Dist-Zilla-Plugin-NextVersion-Semantic/files/Dist-Zilla-Plugin-NextVersion-Semantic-0.2.5-no-V-in-test.patch
22 +++ /dev/null
23 @@ -1,40 +0,0 @@
24 -From e38c5bfa847361ab251ce533fdd6e8993afbd2f3 Mon Sep 17 00:00:00 2001
25 -From: Kent Fredric <kentnl@g.o>
26 -Date: Sat, 19 Sep 2020 22:13:21 +1200
27 -Subject: t/basic.t: Don't become broken when MAKEOPTS includes V=1
28 -
29 -Some people set MAKEOPTS to include V=1, in order to coax autotools
30 -based makefiles into being more verbose.
31 -
32 -But when that ENV var is used to direct perl ebuilds for Dzil things,
33 -well, it unintentionally uses "1" as the *next version*, and so breaks
34 -all code that isn't expecting that to happen.
35 -
36 -Given its not the job of tests to tell people their system is weird, it
37 -just makes the scope "normal" ( that is, defaulting V to be unset
38 -internally )
39 -
40 -Bug: https://bugs.gentoo.org/737308
41 -Bug: https://github.com/yanick/Dist-Zilla-Plugin-NextVersion-Semantic/pull/6
42 ----
43 - t/basic.t | 4 ++++
44 - 1 file changed, 4 insertions(+)
45 -
46 -diff --git a/t/basic.t b/t/basic.t
47 -index 22d04fe..b2942c8 100644
48 ---- a/t/basic.t
49 -+++ b/t/basic.t
50 -@@ -6,6 +6,10 @@ use Test::Exception;
51 -
52 - use Test::DZil;
53 -
54 -+# V=1 is common in MAKEOPTS for gnu autotools
55 -+# to set "verbose mode"
56 -+delete $ENV{V} if exists $ENV{V};
57 -+
58 - my $changes = make_changes(<<'END_CHANGES');
59 - - got included in an awesome test suite
60 - END_CHANGES
61 ---
62 -2.28.0
63 -