Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/URI-Fetch/files/
Date: Wed, 23 Jun 2021 04:19:47
Message-Id: 1624421969.c19b1988f458e736261bfea7322d1b6210346357.sam@gentoo
1 commit: c19b1988f458e736261bfea7322d1b6210346357
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 23 04:18:35 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 23 04:19:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c19b1988
7
8 dev-perl/URI-Fetch: apply upstream patch for Perl minimum version deux
9
10 Closes: https://bugs.gentoo.org/797646
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 .../files/URI-Fetch-0.130.0-min-perl.patch | 51 +++++++++++++++++++++-
14 1 file changed, 50 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-perl/URI-Fetch/files/URI-Fetch-0.130.0-min-perl.patch b/dev-perl/URI-Fetch/files/URI-Fetch-0.130.0-min-perl.patch
17 index 3108055dd54..1d7009309d5 100644
18 --- a/dev-perl/URI-Fetch/files/URI-Fetch-0.130.0-min-perl.patch
19 +++ b/dev-perl/URI-Fetch/files/URI-Fetch-0.130.0-min-perl.patch
20 @@ -1,5 +1,54 @@
21 -https://github.com/neilb/URI-Fetch/commit/20eba82783a5c08adc88ff1cdc7ee9433d63ae4f.patch
22 https://bugs.gentoo.org/794676
23 +diff --git a/META.json b/META.json
24 +index 974e2a1..7ac7ad1 100644
25 +--- a/META.json
26 ++++ b/META.json
27 +@@ -28,7 +28,7 @@
28 + "URI" : "0",
29 + "base" : "0",
30 + "constant" : "0",
31 +- "perl" : "5.008_001",
32 ++ "perl" : "5.008001",
33 + "strict" : "0",
34 + "warnings" : "0"
35 + }
36 +diff --git a/META.yml b/META.yml
37 +index d8902d3..388f6f1 100644
38 +--- a/META.yml
39 ++++ b/META.yml
40 +@@ -23,7 +23,7 @@ requires:
41 + URI: '0'
42 + base: '0'
43 + constant: '0'
44 +- perl: 5.008_001
45 ++ perl: '5.008001'
46 + strict: '0'
47 + warnings: '0'
48 + resources:
49 +diff --git a/Makefile.PL b/Makefile.PL
50 +index d30a364..96baeaa 100644
51 +--- a/Makefile.PL
52 ++++ b/Makefile.PL
53 +@@ -2,7 +2,7 @@
54 + use strict;
55 + use warnings;
56 +
57 +-use 5.008_001;
58 ++use 5.008001;
59 +
60 + use ExtUtils::MakeMaker;
61 +
62 +@@ -15,7 +15,7 @@ my %WriteMakefileArgs = (
63 + "DISTNAME" => "URI-Fetch",
64 + "EXE_FILES" => [],
65 + "LICENSE" => "perl",
66 +- "MIN_PERL_VERSION" => "5.008_001",
67 ++ "MIN_PERL_VERSION" => "5.008001",
68 + "NAME" => "URI::Fetch",
69 + "PREREQ_PM" => {
70 + "Carp" => 0,
71 +diff --git a/lib/URI/Fetch.pm b/lib/URI/Fetch.pm
72 +index 136669f..7615b54 100644
73 --- a/lib/URI/Fetch.pm
74 +++ b/lib/URI/Fetch.pm
75 @@ -1,6 +1,6 @@