From f54c03f579715acdfb39856d7c7dde008d349a37 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Jun 09 2014 08:43:42 +0000 Subject: import perl516-perl-Digest-SHA-5.85-3.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3294072 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Digest-SHA-5.85.tar.gz diff --git a/.perl516-perl-Digest-SHA.metadata b/.perl516-perl-Digest-SHA.metadata new file mode 100644 index 0000000..9876e05 --- /dev/null +++ b/.perl516-perl-Digest-SHA.metadata @@ -0,0 +1 @@ +a603cfba95afcd0266c9482c0c93e84241fe0ce0 SOURCES/Digest-SHA-5.85.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index ce46a88..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/Digest-SHA-5.84-Reset-CFLAGS.patch b/SOURCES/Digest-SHA-5.84-Reset-CFLAGS.patch new file mode 100644 index 0000000..ece3b78 --- /dev/null +++ b/SOURCES/Digest-SHA-5.84-Reset-CFLAGS.patch @@ -0,0 +1,29 @@ +From 77ac96bd42f3986dd77e5f1afcdb3e71d2aa03b3 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Mon, 11 Mar 2013 09:44:22 +0100 +Subject: [PATCH] Reset CFLAGS + +--- + Makefile.PL | 6 ------ + 1 file changed, 6 deletions(-) + +diff --git a/Makefile.PL b/Makefile.PL +index 3d83865..f0d08a1 100644 +--- a/Makefile.PL ++++ b/Makefile.PL +@@ -27,12 +27,6 @@ if ($^O eq 'VMS') { + } + } + +- # Enhance performance on Intel when using gcc +- +-if ($Config{archname} =~ /^i[3456]86/ && $Config{ccname} eq 'gcc') { +- push(@extra, OPTIMIZE => '-O1 -fomit-frame-pointer'); +-} +- + my %att = ( + 'NAME' => 'Digest::SHA', + 'VERSION_FROM' => $PM, +-- +1.8.1.4 + diff --git a/SPECS/perl-Digest-SHA.spec b/SPECS/perl-Digest-SHA.spec new file mode 100644 index 0000000..3ec4cd0 --- /dev/null +++ b/SPECS/perl-Digest-SHA.spec @@ -0,0 +1,104 @@ +%{?scl:%scl_package perl-Digest-SHA} +%{!?scl:%global pkg_name %{name}} + +Name: %{?scl_prefix}perl-Digest-SHA +Epoch: 1 +Version: 5.85 +Release: 3%{?dist} +Summary: Perl extension for SHA-1/224/256/384/512 +License: GPL+ or Artistic +Group: Development/Libraries +URL: http://search.cpan.org/dist/Digest-SHA/ +Source0: http://www.cpan.org/authors/id/M/MS/MSHELOR/Digest-SHA-%{version}.tar.gz +# Since 5.80, upstream overrides CFLAGS because they think it improves +# performance. Revert it. +Patch0: Digest-SHA-5.84-Reset-CFLAGS.patch +BuildRequires: %{?scl_prefix}perl +BuildRequires: %{?scl_prefix}perl(Config) +BuildRequires: %{?scl_prefix}perl(ExtUtils::MakeMaker) +BuildRequires: %{?scl_prefix}perl(Getopt::Std) +BuildRequires: %{?scl_prefix}perl(strict) +# Run-time +BuildRequires: %{?scl_prefix}perl(Carp) +BuildRequires: %{?scl_prefix}perl(DynaLoader) +BuildRequires: %{?scl_prefix}perl(Exporter) +BuildRequires: %{?scl_prefix}perl(Fcntl) +BuildRequires: %{?scl_prefix}perl(integer) +BuildRequires: %{?scl_prefix}perl(vars) +# Optional run-time +BuildRequires: %{?scl_prefix}perl(Digest::base) +# Tests +BuildRequires: %{?scl_prefix}perl(FileHandle) +# Optional tests +%if !%{defined perl_bootstrap} +BuildRequires: %{?scl_prefix}perl(Test::Pod) >= 1.00 +BuildRequires: %{?scl_prefix}perl(Test::Pod::Coverage) >= 0.08 +%endif +%{?scl:%global perl_version %(scl enable %{scl} 'eval "`%{__perl} -V:version`"; echo $version')} +%{!?scl:%global perl_version %(eval "`%{__perl} -V:version`"; echo $version)} +Requires: %{?scl_prefix}perl(:MODULE_COMPAT_%{perl_version}) +Requires: %{?scl_prefix}perl(Carp) +# Optional but recommended +Requires: %{?scl_prefix}perl(Digest::base) + +%{?perl_default_filter} + +%description +Digest::SHA is a complete implementation of the NIST Secure Hash Standard. It +gives Perl programmers a convenient way to calculate SHA-1, SHA-224, SHA-256, +SHA-384, SHA-512, SHA-512/224, and SHA-512/256 message digests. The module can +handle all types of input, including partial-byte data. + +%prep +%setup -q -n Digest-SHA-%{version} +%patch0 -p1 +chmod -x examples/* +%{?scl:scl enable %{scl} "} +perl -MExtUtils::MakeMaker -e 'ExtUtils::MM_Unix->fixin(q{examples/dups})' +%{?scl:"} + +%build +%{?scl:scl enable %{scl} '} +%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" +%{?scl:'} +%{?scl:scl enable %{scl} "} +make %{?_smp_mflags} +%{?scl:"} + +%install +%{?scl:scl enable %{scl} "} +make pure_install DESTDIR=$RPM_BUILD_ROOT +%{?scl:"} +find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; +find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +%{?scl:scl enable %{scl} "} +make test +%{?scl:"} + +%files +%doc Changes examples README +%{_bindir}/* +%{perl_vendorarch}/auto/* +%{perl_vendorarch}/Digest* +%{_mandir}/man1/* +%{_mandir}/man3/* + +%changelog +* Tue Feb 11 2014 Jitka Plesnikova - 1:5.85-3 +- Fixed rpmlint error +- Resolves: rhbz#1063206 + +* Mon Nov 25 2013 Jitka Plesnikova - 1:5.85-2 +- Re-rebuild of bootstrapped packages + +* Tue Nov 12 2013 Jitka Plesnikova - 1:5.85-1 +- 5.85 bump + +* Mon May 20 2013 Jitka Plesnikova - 1:5.84-1 +- 5.84 bump + +* Fri Feb 8 2013 Jitka Plesnikova - 1:5.82-1 +- Stack package - initial release