3.62 bump
This commit is contained in:
parent
6b491fbb5b
commit
d838540aee
1
.gitignore
vendored
1
.gitignore
vendored
@ -34,3 +34,4 @@
|
||||
/Locale-Codes-3.58.tar.gz
|
||||
/Locale-Codes-3.60.tar.gz
|
||||
/Locale-Codes-3.61.tar.gz
|
||||
/Locale-Codes-3.62.tar.gz
|
||||
|
||||
@ -1,125 +0,0 @@
|
||||
From b8b0219939f6695b70acc147eb24769eaff30e8d Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||
Date: Wed, 5 Jun 2019 18:01:10 +0200
|
||||
Subject: [PATCH] Stop depending on release tests dependencies
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Because RELEASE_NOTES does not exist by default, it does not make
|
||||
sense to depend on module that are actually not used.
|
||||
|
||||
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||
---
|
||||
Makefile.PL | 6 ------
|
||||
t/_pod.t | 13 ++++++++-----
|
||||
t/_pod_coverage.t | 13 ++++++++-----
|
||||
t/_version.t | 14 +++++++++-----
|
||||
4 files changed, 25 insertions(+), 21 deletions(-)
|
||||
|
||||
diff --git a/Makefile.PL b/Makefile.PL
|
||||
index 8ef6ecd..85b205e 100644
|
||||
--- a/Makefile.PL
|
||||
+++ b/Makefile.PL
|
||||
@@ -22,14 +22,8 @@ my %script_prereq = (
|
||||
);
|
||||
|
||||
my %test_prereq = (
|
||||
- 'Cwd' => '0',
|
||||
- 'File::Basename' => '0',
|
||||
- 'File::Find::Rule' => '0',
|
||||
- 'IO::File' => '0',
|
||||
'Test::Inter' => '1.09',
|
||||
'Test::More' => '0',
|
||||
- 'Test::Pod' => '1.00',
|
||||
- 'Test::Pod::Coverage' => '1.00',
|
||||
);
|
||||
|
||||
my %config_prereq = (
|
||||
diff --git a/t/_pod.t b/t/_pod.t
|
||||
index 8d5e351..aea7d0c 100755
|
||||
--- a/t/_pod.t
|
||||
+++ b/t/_pod.t
|
||||
@@ -3,15 +3,18 @@
|
||||
use warnings 'all';
|
||||
use strict;
|
||||
use Test::More;
|
||||
+
|
||||
+BEGIN {
|
||||
+ # Don't run tests for installs
|
||||
+ unless ($ENV{RELEASE_TESTING}) {
|
||||
+ plan skip_all => 'Author tests not required for installation (set RELEASE_TESTING to test)';
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
use File::Basename;
|
||||
use Cwd 'abs_path';
|
||||
use Test::Pod 1.00;
|
||||
|
||||
-# Don't run tests for installs
|
||||
-unless ($ENV{RELEASE_TESTING}) {
|
||||
- plan skip_all => 'Author tests not required for installation (set RELEASE_TESTING to test)';
|
||||
-}
|
||||
-
|
||||
# Figure out the directories. This comes from Test::Inter.
|
||||
|
||||
my($moddir,$testdir,$libdir);
|
||||
diff --git a/t/_pod_coverage.t b/t/_pod_coverage.t
|
||||
index 9255d3b..88d27f9 100755
|
||||
--- a/t/_pod_coverage.t
|
||||
+++ b/t/_pod_coverage.t
|
||||
@@ -3,15 +3,18 @@
|
||||
use warnings 'all';
|
||||
use strict;
|
||||
use Test::More;
|
||||
+
|
||||
+BEGIN {
|
||||
+ # Don't run tests for installs
|
||||
+ unless ($ENV{RELEASE_TESTING}) {
|
||||
+ plan skip_all => 'Author tests not required for installation (set RELEASE_TESTING to test)';
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
use File::Basename;
|
||||
use Cwd 'abs_path';
|
||||
use Test::Pod::Coverage 1.00;
|
||||
|
||||
-# Don't run tests for installs
|
||||
-unless ($ENV{RELEASE_TESTING}) {
|
||||
- plan skip_all => 'Author tests not required for installation (set RELEASE_TESTING to test)';
|
||||
-}
|
||||
-
|
||||
# Figure out the directories. This comes from Test::Inter.
|
||||
|
||||
my($moddir,$testdir,$libdir);
|
||||
diff --git a/t/_version.t b/t/_version.t
|
||||
index fe31123..9d6c112 100755
|
||||
--- a/t/_version.t
|
||||
+++ b/t/_version.t
|
||||
@@ -3,14 +3,18 @@
|
||||
use warnings 'all';
|
||||
use strict;
|
||||
use Test::Inter;
|
||||
-use IO::File;
|
||||
-use File::Find::Rule;
|
||||
-my $ti = new Test::Inter $0;
|
||||
+my $ti;
|
||||
|
||||
-unless ($ENV{RELEASE_TESTING}) {
|
||||
- $ti->skip_all('Author tests not required for installation (set RELEASE_TESTING to test)');
|
||||
+BEGIN {
|
||||
+ $ti = new Test::Inter $0;
|
||||
+ unless ($ENV{RELEASE_TESTING}) {
|
||||
+ $ti->skip_all('Author tests not required for installation (set RELEASE_TESTING to test)');
|
||||
+ }
|
||||
}
|
||||
|
||||
+use IO::File;
|
||||
+use File::Find::Rule;
|
||||
+
|
||||
# Figure out what module we are in. A module is in a directory:
|
||||
# My-Mod-Name-1.00
|
||||
# It includes any number of .pm files, each of which contain a single
|
||||
--
|
||||
2.20.1
|
||||
|
||||
@ -1,13 +1,10 @@
|
||||
Name: perl-Locale-Codes
|
||||
Version: 3.61
|
||||
Release: 2%{?dist}
|
||||
Version: 3.62
|
||||
Release: 1%{?dist}
|
||||
Summary: Distribution of modules to handle locale codes
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/Locale-Codes
|
||||
Source0: https://cpan.metacpan.org/authors/id/S/SB/SBECK/Locale-Codes-%{version}.tar.gz
|
||||
# Stop requiring dependencies of release tests, proposed to upstream
|
||||
# <https://github.com/SBECK-github/Locale-Codes/pull/11>
|
||||
Patch0: Locale-Codes-3.61-Stop-depending-on-release-tests-dependencies.patch
|
||||
BuildArch: noarch
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: make
|
||||
@ -48,7 +45,6 @@ including languages, countries, currency, etc.
|
||||
|
||||
%prep
|
||||
%setup -q -n Locale-Codes-%{version}
|
||||
%patch0 -p1
|
||||
chmod -x examples/*
|
||||
|
||||
%build
|
||||
@ -70,6 +66,9 @@ make test
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Fri Aug 30 2019 Petr Pisar <ppisar@redhat.com> - 3.62-1
|
||||
- 3.62 bump
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.61-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
|
||||
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (Locale-Codes-3.61.tar.gz) = eee3816288d8fab2e48b0a5b76470f75aeaf74d5cffada56278a7e00226e79f7aadb3ed9a7f43bfe65400d500fa20a2442d4ecfb1653c6890cc1072c40656092
|
||||
SHA512 (Locale-Codes-3.62.tar.gz) = 94a45521637a6b2d3f42ccf3f996b40da264af532c4bdef3e6592e09fe21e3f31f3d146decfc94a5caf0b653dcca239ec4c657a82c7702677f69b6806f1d8133
|
||||
|
||||
Loading…
Reference in New Issue
Block a user