diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aaf2b3f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Module-Load-Conditional-0.54.tar.gz diff --git a/.perl-Module-Load-Conditional.metadata b/.perl-Module-Load-Conditional.metadata new file mode 100644 index 0000000..67d97a6 --- /dev/null +++ b/.perl-Module-Load-Conditional.metadata @@ -0,0 +1 @@ +867c09d473b0ebcdc0c30e2cf480ecb90118d6f8 SOURCES/Module-Load-Conditional-0.54.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/Module-Load-Conditional-0.60-Resolve-test-failures-on-v5.16.x.patch b/SOURCES/Module-Load-Conditional-0.60-Resolve-test-failures-on-v5.16.x.patch new file mode 100644 index 0000000..42dce54 --- /dev/null +++ b/SOURCES/Module-Load-Conditional-0.60-Resolve-test-failures-on-v5.16.x.patch @@ -0,0 +1,42 @@ +From 295cb81d953bff3c7311cf5038d061abeb7802d9 Mon Sep 17 00:00:00 2001 +From: Chris 'BinGOs' Williams +Date: Fri, 24 Jan 2014 15:51:43 +0000 +Subject: [PATCH 1/2] Resolve test failures on v5.16.x +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Petr Písař +--- + t/01_Module_Load_Conditional.t | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/t/01_Module_Load_Conditional.t b/t/01_Module_Load_Conditional.t +index 1b8728f..1bfa1a1 100644 +--- a/t/01_Module_Load_Conditional.t ++++ b/t/01_Module_Load_Conditional.t +@@ -281,8 +281,8 @@ SKIP:{ + local $Module::Load::Conditional::CHECK_INC_HASH = 1; + + { package A::B::C::D; +- $A::B::C::D::VERSION = $$; +- $INC{'A/B/C/D.pm'} = $$.$$; ++ $A::B::C::D::VERSION = "$$"; ++ $INC{'A/B/C/D.pm'} = "$$"."$$"; + + ### XXX this is no longer needed with M::Load 0.11_01 + #$INC{'[.A.B.C]D.pm'} = $$.$$ if $^O eq 'VMS'; +@@ -291,8 +291,8 @@ SKIP:{ + my $href = check_install( module => 'A::B::C::D', version => 0 ); + + ok( $href, 'Found package in %INC' ); +- is( $href->{'file'}, $$.$$, ' Found correct file' ); +- is( $href->{'version'}, $$, ' Found correct version' ); ++ is( $href->{'file'}, "$$"."$$", ' Found correct file' ); ++ is( $href->{'version'}, "$$", ' Found correct version' ); + ok( $href->{'uptodate'}, ' Marked as uptodate' ); + ok( can_load( modules => { 'A::B::C::D' => 0 } ), + ' can_load successful' ); +-- +1.9.0 + diff --git a/SPECS/perl-Module-Load-Conditional.spec b/SPECS/perl-Module-Load-Conditional.spec new file mode 100644 index 0000000..bf63625 --- /dev/null +++ b/SPECS/perl-Module-Load-Conditional.spec @@ -0,0 +1,77 @@ +Name: perl-Module-Load-Conditional +Version: 0.54 +Release: 3%{?dist} +Summary: Looking up module information and loading at run-time +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Module-Load-Conditional/ +Source0: http://www.cpan.org/authors/id/B/BI/BINGOS/Module-Load-Conditional-%{version}.tar.gz +# Fix tests to pass with version-0.9907 on perl-5.16.3, in upstream 0.62, +# bug #1093387, +Patch0: Module-Load-Conditional-0.60-Resolve-test-failures-on-v5.16.x.patch +BuildArch: noarch +BuildRequires: perl +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(strict) +# Run-time: +BuildRequires: perl(Carp) +BuildRequires: perl(Config) +BuildRequires: perl(constant) +BuildRequires: perl(Exporter) +BuildRequires: perl(FileHandle) +BuildRequires: perl(File::Spec) +BuildRequires: perl(Locale::Maketext::Simple) +# Module::CoreList 2.22 not needed when running tests +BuildRequires: perl(Module::Load) >= 0.11 +BuildRequires: perl(Module::Metadata) >= 1.000005 +BuildRequires: perl(Params::Check) +BuildRequires: perl(vars) +BuildRequires: perl(version) >= 0.69 +# Tests: +BuildRequires: perl(FindBin) +BuildRequires: perl(lib) +BuildRequires: perl(Test::More) +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +Requires: perl(Config) +Requires: perl(Module::CoreList) >= 2.22 +Requires: perl(Module::Load) >= 0.11 +Requires: perl(Module::Metadata) >= 1.000005 +Requires: perl(version) >= 0.69 + +# Filter under-specified dependencies +%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((Module::Load|Module::Metadata|version)\\)$ + +%description +This module provides simple ways to query and possibly load any of the modules +you have installed on your system during run-time. + +%prep +%setup -q -n Module-Load-Conditional-%{version} +%patch0 -p1 + +%build +perl Makefile.PL INSTALLDIRS=vendor +make %{?_smp_mflags} + +%install +make pure_install DESTDIR=$RPM_BUILD_ROOT +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +make test + +%files +%doc CHANGES README +%{perl_vendorlib}/* +%{_mandir}/man3/* + +%changelog +* Fri May 02 2014 Petr Pisar - 0.54-3 +- Fix tests to pass with version-0.9907 on perl-5.16.3 (bug #1093387) + +* Fri Dec 27 2013 Daniel Mach - 0.54-2 +- Mass rebuild 2013-12-27 + +* Fri Jan 25 2013 Petr Pisar 0.54-1 +- Specfile autogenerated by cpanspec 1.78.