tuibuilder_pel7ppc64lebuilder0
1 year ago
26 changed files with 3951 additions and 0 deletions
@ -0,0 +1,8 @@
@@ -0,0 +1,8 @@
|
||||
--- t/00-report-prereqs.t |
||||
+++ t/00-report-prereqs.t |
||||
@@ -1,4 +1,4 @@ |
||||
-#!perl |
||||
+#!/usr/bin/perl |
||||
|
||||
use strict; |
||||
use warnings; |
@ -0,0 +1,50 @@
@@ -0,0 +1,50 @@
|
||||
--- MIME-Types-1.31/ChangeLog 2010-09-21 14:35:38.000000000 +0100 |
||||
+++ MIME-Types-1.31/ChangeLog 2011-03-15 10:10:00.994144345 +0000 |
||||
@@ -136,7 +136,7 @@ |
||||
|
||||
version 1.14: Wed Nov 24 18:09:49 CET 2004 |
||||
|
||||
- - [Ville Skyttä] provided some minor fixes and two new types |
||||
+ - [Ville Skyttä] provided some minor fixes and two new types |
||||
|
||||
- [Ave Wringley] contributed video/x-ms-wmv |
||||
|
||||
@@ -145,14 +145,14 @@ |
||||
|
||||
version 1.13: Sat Apr 24 00:15:09 CEST 2004 |
||||
|
||||
- - [Ville Skyttä] and [Austing Ziegler] updated the type list to |
||||
+ - [Ville Skyttä] and [Austing Ziegler] updated the type list to |
||||
IANA registry dated 2004-04-09. Many changes to clean-up the |
||||
list, trying to find a good balance between IANA's rules and |
||||
common practice. |
||||
|
||||
version 1.12: Wed Jan 21 10:09:43 CET 2004 |
||||
|
||||
- - [Ville Skyttä] requested removal of application/excel, because |
||||
+ - [Ville Skyttä] requested removal of application/excel, because |
||||
it is not IANA registered. Applied. |
||||
|
||||
- Documented that alternative types for a certain extension will |
||||
@@ -163,7 +163,7 @@ |
||||
|
||||
version 1.11: Tue Jan 13 10:36:41 CET 2004 |
||||
|
||||
- - [Ville Skyttä] contributed a large set of new mime-types, and |
||||
+ - [Ville Skyttä] contributed a large set of new mime-types, and |
||||
applied some fixes. New IANA names are now all included. |
||||
|
||||
version 1.10: Wed Dec 17 12:47:00 CET 2003 |
||||
@@ -203,10 +203,10 @@ |
||||
- [Guangzu Wang] pointed to typos in the Synopsis of both packages: |
||||
$mimetype --> $mimetypes |
||||
|
||||
- - [Ville Skyttä] some doc patches and many tweaks and additions |
||||
+ - [Ville Skyttä] some doc patches and many tweaks and additions |
||||
to the type list. |
||||
|
||||
- - [Ville Skyttä] fixed bug, where the third column was taken as |
||||
+ - [Ville Skyttä] fixed bug, where the third column was taken as |
||||
second if that one was empty. |
||||
|
||||
version 1.004: Tue Oct 22 19:22:43 CEST 2002 |
@ -0,0 +1,72 @@
@@ -0,0 +1,72 @@
|
||||
diff -up ./t/07-debugger.t.orig ./t/07-debugger.t |
||||
--- ./t/07-debugger.t.orig 2012-11-26 18:47:12.000000000 +0000 |
||||
+++ ./t/07-debugger.t 2012-12-05 15:16:36.658012218 +0000 |
||||
@@ -26,6 +26,8 @@ BEGIN { |
||||
|
||||
} |
||||
|
||||
+plan tests => 4; |
||||
+ |
||||
{ |
||||
package Foo; |
||||
|
||||
@@ -44,5 +46,3 @@ ok( !Foo->can("foo"), "foo cleaned up" ) |
||||
ok( !Foo->can("baz"), "baz cleaned up" ); |
||||
|
||||
Foo->bar(); |
||||
- |
||||
-done_testing; |
||||
diff -up ./t/08-const-sub.t.orig ./t/08-const-sub.t |
||||
--- ./t/08-const-sub.t.orig 2011-03-29 22:44:20.000000000 +0100 |
||||
+++ ./t/08-const-sub.t 2012-12-05 15:16:36.670012221 +0000 |
||||
@@ -1,7 +1,7 @@ |
||||
use strict; |
||||
use warnings; |
||||
|
||||
-use Test::More 0.88; |
||||
+use Test::More tests => 2; |
||||
|
||||
use constant CONST => 123; |
||||
use namespace::clean; |
||||
@@ -10,5 +10,3 @@ my $x = CONST; |
||||
is $x, 123; |
||||
|
||||
ok eval("!defined(&CONST)"); |
||||
- |
||||
-done_testing; |
||||
diff -up ./t/09-fiddle-hinthash.t.orig ./t/09-fiddle-hinthash.t |
||||
--- ./t/09-fiddle-hinthash.t.orig 2011-12-22 11:07:06.000000000 +0000 |
||||
+++ ./t/09-fiddle-hinthash.t 2012-12-05 15:16:36.671012222 +0000 |
||||
@@ -1,7 +1,7 @@ |
||||
use strict; |
||||
use warnings; |
||||
|
||||
-use Test::More 0.88; |
||||
+use Test::More tests => 4; |
||||
|
||||
{ |
||||
package Bar; |
||||
@@ -49,5 +49,3 @@ use Test::More 0.88; |
||||
} |
||||
} |
||||
|
||||
- |
||||
-done_testing; |
||||
diff -up ./t/10-pure-perl.t.orig ./t/10-pure-perl.t |
||||
--- ./t/10-pure-perl.t.orig 2012-11-26 18:47:12.000000000 +0000 |
||||
+++ ./t/10-pure-perl.t 2012-12-05 15:17:25.973028700 +0000 |
||||
@@ -8,6 +8,8 @@ plan skip_all => "PP tests already execu |
||||
eval { require Variable::Magic } |
||||
or plan skip_all => "PP tests already executed"; |
||||
|
||||
+plan tests => 12; |
||||
+ |
||||
$ENV{B_HOOKS_ENDOFSCOPE_IMPLEMENTATION} = 'PP'; |
||||
require B::Hooks::EndOfScope; |
||||
ok( ($INC{'B/Hooks/EndOfScope/PP.pm'} && ! $INC{'B/Hooks/EndOfScope/XS.pm'}), |
||||
@@ -42,5 +44,3 @@ for my $fn (bsd_glob("$Bin/*.t")) { |
||||
wait; |
||||
ok (! $?, "Exit $? from: @cmd"); |
||||
} |
||||
- |
||||
-done_testing; |
@ -0,0 +1,199 @@
@@ -0,0 +1,199 @@
|
||||
Name: perl-B-Hooks-EndOfScope |
||||
Version: 0.13 |
||||
Release: 2%{?dist} |
||||
License: GPL+ or Artistic |
||||
Group: Development/Libraries |
||||
Summary: Execute code after scope compilation finishes |
||||
URL: http://search.cpan.org/dist/B-Hooks-EndOfScope/ |
||||
Source0: http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/B-Hooks-EndOfScope-%{version}.tar.gz |
||||
Patch0: B-Hooks-EndOfScope-0.13-shellbangs.patch |
||||
BuildArch: noarch |
||||
# Build |
||||
BuildRequires: perl(ExtUtils::CBuilder) |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
# Module |
||||
# note: Variable::Magic only needed (version ≥ 0.48) by XS version |
||||
# base, constant, Hash::Util::FieldHash and Scalar::Util only needed by PP version |
||||
BuildRequires: perl(base) |
||||
BuildRequires: perl(constant) |
||||
BuildRequires: perl(Hash::Util::FieldHash) |
||||
BuildRequires: perl(Module::Implementation) >= 0.05 |
||||
BuildRequires: perl(Module::Runtime) >= 0.012 |
||||
BuildRequires: perl(Scalar::Util) |
||||
BuildRequires: perl(Sub::Exporter::Progressive) >= 0.001006 |
||||
BuildRequires: perl(Variable::Magic) >= 0.48 |
||||
# Test suite |
||||
BuildRequires: perl(CPAN::Meta) |
||||
BuildRequires: perl(CPAN::Meta::Requirements) |
||||
BuildRequires: perl(Devel::Hide) >= 0.0007 |
||||
BuildRequires: perl(Test::More) >= 0.89 |
||||
# Release tests |
||||
%if 0%{!?perl_bootstrap:1} && 0%{?rhel} < 7 |
||||
BuildRequires: perl(Pod::Coverage::TrustPod) |
||||
BuildRequires: perl(Test::CPAN::Changes) |
||||
BuildRequires: perl(Test::CPAN::Meta) |
||||
BuildRequires: perl(Test::EOL) |
||||
BuildRequires: perl(Test::Kwalitee) |
||||
BuildRequires: perl(Test::MinimumVersion) |
||||
BuildRequires: perl(Test::Mojibake) |
||||
BuildRequires: perl(Test::NoTabs) |
||||
BuildRequires: perl(Test::Pod) >= 1.41 |
||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.08 |
||||
BuildRequires: perl(Test::Pod::No404s) |
||||
BuildRequires: perl(Test::Portability::Files) |
||||
BuildRequires: perl(Test::Spelling), hunspell-en |
||||
BuildRequires: perl(Test::Vars) |
||||
BuildRequires: perl(Test::Version) |
||||
%endif |
||||
# Runtime |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) |
||||
Requires: perl(Module::Implementation) >= 0.05 |
||||
Requires: perl(Module::Runtime) >= 0.012 |
||||
Requires: perl(Variable::Magic) >= 0.48 |
||||
|
||||
%description |
||||
This module allows you to execute code when Perl has finished compiling the |
||||
surrounding scope. |
||||
|
||||
%prep |
||||
%setup -q -n B-Hooks-EndOfScope-%{version} |
||||
|
||||
# Remove shellbangs from tests to placate rpmlint |
||||
%patch0 |
||||
|
||||
%build |
||||
perl Makefile.PL INSTALLDIRS=vendor |
||||
make %{?_smp_mflags} |
||||
|
||||
%install |
||||
make pure_install DESTDIR=%{buildroot} |
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';' |
||||
%{_fixperms} %{buildroot} |
||||
|
||||
%check |
||||
export AUTHOR_TESTING=1 |
||||
make test |
||||
%if 0%{!?perl_bootstrap:1} && 0%{?rhel} < 7 |
||||
make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" |
||||
%endif |
||||
|
||||
%files |
||||
%doc Changes CONTRIBUTING LICENSE README README.md t/ |
||||
%{perl_vendorlib}/B/ |
||||
%{_mandir}/man3/B::Hooks::EndOfScope.3pm* |
||||
%{_mandir}/man3/B::Hooks::EndOfScope::PP.3pm* |
||||
%{_mandir}/man3/B::Hooks::EndOfScope::XS.3pm* |
||||
|
||||
%changelog |
||||
* Wed Jan 15 2014 Paul Howarth <paul@city-fan.org> - 0.13-2 |
||||
- Bootstrap EPEL-7 build |
||||
|
||||
* Wed Jan 8 2014 Paul Howarth <paul@city-fan.org> - 0.13-1 |
||||
- Update to 0.13 |
||||
- Variable::Magic added as a runtime recommendation for greater visibility |
||||
(CPAN RT#89245) |
||||
- Fixed broken logic in compiler detection on older perls |
||||
- Fixed inaccurate repository metadata |
||||
- This release by ETHER -> update source URL |
||||
- Drop Pod Coverage patch, no longer needed |
||||
- Update shellbang patch |
||||
- Don't run the release tests when bootstrapping |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Wed Jul 24 2013 Petr Pisar <ppisar@redhat.com> - 0.12-3 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Wed Dec 5 2012 Paul Howarth <paul@city-fan.org> - 0.12-1 |
||||
- Update to 0.12 |
||||
- Complete pure-perl implementation in addition to the one based on |
||||
Variable::Magic; you can specify the implementation explicitly by use-ing |
||||
B::Hooks::EndOfScope::PP or B::Hooks::EndOfScope::XS, or by setting |
||||
$ENV{B_HOOKS_ENDOFSCOPE_IMPLEMENTATION} to either 'XS' or 'PP' |
||||
- Switch from using Sub::Exporter to the more conservative |
||||
Sub::Exporter::Progressive |
||||
- Add patch to fix POD coverage issues in new pure-perl implementation |
||||
- This release by BOBTFISH -> update source URL |
||||
- BR: perl(ExtUtils::CBuilder) ≥ 0.26, perl(Devel::Hide) ≥ 0.0007, |
||||
perl(Module::Implementation) ≥ 0.05 and perl(Module::Runtime) ≥ 0.012 |
||||
- BR: perl(Sub::Exporter::Progressive) rather than perl(Sub::Exporter) |
||||
- BR: perl(base), perl(constant), perl(Hash::Util::FieldHash) and |
||||
perl(Scalar::Util) for the pure-perl implementation |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Fri Jun 15 2012 Petr Pisar <ppisar@redhat.com> - 0.11-2 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Thu Feb 23 2012 Paul Howarth <paul@city-fan.org> - 0.11-1 |
||||
- Update to 0.11 (a minor efficiency improvement) |
||||
- Bump perl(Variable::Magic) version requirement to 0.48 |
||||
|
||||
* Thu Feb 16 2012 Paul Howarth <paul@city-fan.org> - 0.10-1 |
||||
- Update to 0.10 (stop propagating our magic through localisation) |
||||
- Package LICENSE file |
||||
- Downgrade ExtUtils::MakeMaker version requirement to 6.30 |
||||
- Upgrade Test::More version requirement to 0.89 |
||||
- Drop Test::Pod version requirement for EPEL-6 spec compatibility |
||||
- BR: perl(Test::EOL) and perl(Test::NoTabs) for additional test coverage |
||||
- Clean up for modern rpmbuild since we have no branches prior to EPEL-6 |
||||
- Don't specify BuildRoot: |
||||
- Skip cleaning of buildroot in %%install |
||||
- Remove %%clean section |
||||
- Drop redundant %%defattr |
||||
- Remove shellbangs from tests to placate rpmlint |
||||
|
||||
* Tue Jan 17 2012 Paul Howarth <paul@city-fan.org> - 0.09-1 |
||||
- Update to 0.09 (improve distribution metadata) |
||||
- Run release tests too |
||||
- BR: perl(Pod::Coverage::TrustPod), perl(Test::Pod) and |
||||
perl(Test::Pod::Coverage) for release tests |
||||
- Spec clean-up: |
||||
- Make %%files list more explicit |
||||
- Use DESTDIR rather than PERL_INSTALL_ROOT |
||||
- Use tabs |
||||
- Split buildreqs by Build/Module/Tests/Release tests |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 0.08-7 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.08-5 |
||||
- Rebuild to fix problems with vendorarch/lib (#661697) |
||||
|
||||
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.08-4 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.08-3 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Sun May 17 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.08-1 |
||||
- auto-update to 0.08 (by cpan-spec-update 0.01) |
||||
- altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) |
||||
- altered br on perl(Variable::Magic) (0.31 => 0.34) |
||||
|
||||
* Sun Mar 08 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.07-1 |
||||
- update to 0.07 |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.04-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Sat Nov 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.04-1 |
||||
- update for submission |
||||
|
||||
* Sat Nov 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.04-0.1 |
||||
- initial RPM packaging |
||||
- generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.5) |
@ -0,0 +1,152 @@
@@ -0,0 +1,152 @@
|
||||
Summary: Encrypt Data with Cipher Block Chaining Mode |
||||
Name: perl-Crypt-CBC |
||||
Version: 2.33 |
||||
Release: 2%{?dist} |
||||
# Upstream confirms that they're under the same license as perl. |
||||
# Wording in CBC.pm is less than clear, but still. |
||||
License: GPL+ or Artistic |
||||
Group: Development/Libraries |
||||
URL: http://search.cpan.org/dist/Crypt-CBC/ |
||||
Source0: http://search.cpan.org/CPAN/authors/id/L/LD/LDS/Crypt-CBC-%{version}.tar.gz |
||||
BuildArch: noarch |
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
BuildRequires: perl(bytes) |
||||
BuildRequires: perl(constant) |
||||
BuildRequires: perl(Digest::MD5) >= 2.00 |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
# Modules used for test suite, skipped when bootstrapping as |
||||
# some of these modules use Crypt::CBC themselves |
||||
# Crypt::CAST5 not yet packaged in Fedora |
||||
# Crypt::IDEA is unavailable due to patents |
||||
%if 0%{!?perl_bootstrap:1} |
||||
BuildRequires: perl(Crypt::DES) |
||||
%if ! (0%{?rhel} >= 7) |
||||
BuildRequires: perl(Crypt::Blowfish) |
||||
BuildRequires: perl(Crypt::Blowfish_PP) |
||||
BuildRequires: perl(Crypt::Rijndael) |
||||
%endif |
||||
%endif |
||||
|
||||
%description |
||||
This is Crypt::CBC, a Perl-only implementation of the cryptographic |
||||
cipher block chaining mode (CBC). In combination with a block cipher |
||||
such as Crypt::DES or Crypt::IDEA, you can encrypt and decrypt |
||||
messages of arbitrarily long length. The encrypted messages are |
||||
compatible with the encryption format used by SSLeay. |
||||
|
||||
%prep |
||||
%setup -q -n Crypt-CBC-%{version} |
||||
chmod 644 eg/*.pl |
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor |
||||
make |
||||
|
||||
%install |
||||
rm -rf $RPM_BUILD_ROOT |
||||
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 |
||||
|
||||
%clean |
||||
rm -rf $RPM_BUILD_ROOT |
||||
|
||||
%files |
||||
%doc Changes README eg/ |
||||
%{perl_vendorlib}/Crypt/ |
||||
%{_mandir}/man3/*.3* |
||||
|
||||
%changelog |
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.33-2 |
||||
- Mass rebuild 2013-12-27 |
||||
|
||||
* Tue Jul 30 2013 Paul Howarth <paul@city-fan.org> - 2.33-1 |
||||
- Update to 2.33 |
||||
- Fixes to regular expressions to avoid rare failures to correctly strip |
||||
padding in decoded messages |
||||
- Add padding type = "none" |
||||
- Fix "Taint checks are turned on and your key is tainted" error when |
||||
autogenerating salt and IV |
||||
- Fix minor bugs CPAN RT#83175 and CPAN RT#86455 |
||||
- Don't need to remove empty directories from the buildroot |
||||
- Drop %%defattr, redundant since rpm 4.4 |
||||
- Use %%{_fixperms} macro rather than our own chmod incantation |
||||
- Use DESTDIR rather than PERL_INSTALL_ROOT |
||||
|
||||
* Mon Aug 20 2012 Daniel Mach <dmach@redhat.com> - 2.29-14.1 |
||||
- Rebuild for perl 5.16 |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.29-14 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 2.29-13 |
||||
- Perl 5.16 re-rebuild of bootstrapped packages |
||||
|
||||
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 2.29-12 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Mon Jun 11 2012 Marcela Mašláňová <mmaslano@redhat.com> - 2.29-11 |
||||
- Do not build-require Crypt::Blowfish, Crypt::Blowfish_PP, and Crypt::Rijndael |
||||
on RHEL >= 7 |
||||
- Resolves: rhbz#822812 |
||||
|
||||
* Sat Apr 21 2012 Paul Howarth <paul@city-fan.org> - 2.29-10 |
||||
- BR: perl(bytes), perl(constant), perl(Digest::MD5) - required by module |
||||
- BR: perl(Crypt::Blowfish), perl(Crypt::Blowfish_PP), perl(Crypt::DES), |
||||
perl(Crypt::Rijndael) for improved test coverage, except when bootstrapping |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.29-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.29-8 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.29-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.29-6 |
||||
- Rebuild to fix problems with vendorarch/lib (#661697) |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.29-5 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 2.29-4 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.29-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.29-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Fri Jul 11 2008 Tom "spot" Callawau <tcallawa@redhat.com> - 2.29-1 |
||||
- update to 2.29 |
||||
|
||||
* Mon Mar 3 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.22-3 |
||||
- work around buildsystem burp |
||||
|
||||
* Fri Feb 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.22-2 |
||||
- rebuild for new perl |
||||
|
||||
* Mon Oct 15 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 2.22-1.1 |
||||
- add BR: perl(ExtUtils::MakeMaker) |
||||
|
||||
* Wed Feb 07 2007 Andreas Thienemann <andreas@bawue.net> - 2.22-1 |
||||
- Upgrade to 2.22 |
||||
|
||||
* Fri Sep 08 2006 Andreas Thienemann <andreas@bawue.net> - 2.19-1 |
||||
- Upgrade to 2.19 |
||||
|
||||
* Fri Feb 24 2006 Andreas Thienemann <andreas@bawue.net> - 2.17-1 |
||||
- Upgrade to 2.17 |
||||
|
||||
* Thu Jul 14 2005 Andreas Thienemann <andreas@bawue.net> - 2.14-2 |
||||
- Remove execute permissions from example files |
||||
|
||||
* Thu Jul 14 2005 Andreas Thienemann <andreas@bawue.net> - 2.14-1 |
||||
- Initial package |
||||
|
@ -0,0 +1,132 @@
@@ -0,0 +1,132 @@
|
||||
Name: perl-Crypt-DES |
||||
Version: 2.05 |
||||
Release: 20%{?dist} |
||||
Summary: Perl DES encryption module |
||||
License: BSD |
||||
Group: Development/Libraries |
||||
URL: http://search.cpan.org/dist/Crypt-DES/ |
||||
Source0: http://www.cpan.org/authors/id/D/DP/DPARIS/Crypt-DES-%{version}.tar.gz |
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
# Run-time: |
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(DynaLoader) |
||||
BuildRequires: perl(Exporter) |
||||
# Tests: |
||||
BuildRequires: perl(Crypt::CBC) > 1.22 |
||||
BuildRequires: perl(Benchmark) |
||||
BuildRequires: perl(Data::Dumper) |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%{?perl_default_filter} |
||||
|
||||
%description |
||||
DES encryption module. |
||||
|
||||
%prep |
||||
%setup -q -n Crypt-DES-%{version} |
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" |
||||
make %{?_smp_mflags} |
||||
|
||||
%install |
||||
rm -rf $RPM_BUILD_ROOT |
||||
|
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; |
||||
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \; |
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; |
||||
|
||||
%{_fixperms} $RPM_BUILD_ROOT/* |
||||
|
||||
%check |
||||
make test |
||||
|
||||
%clean |
||||
rm -rf $RPM_BUILD_ROOT |
||||
|
||||
%files |
||||
%defattr(-,root,root,-) |
||||
%doc COPYRIGHT README |
||||
%{perl_vendorarch}/auto/* |
||||
%{perl_vendorarch}/Crypt* |
||||
%{_mandir}/man3/* |
||||
|
||||
%changelog |
||||
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.05-20 |
||||
- Mass rebuild 2014-01-24 |
||||
|
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.05-19 |
||||
- Mass rebuild 2013-12-27 |
||||
|
||||
* Wed Aug 15 2012 Daniel Mach <dmach@redhat.com> - 2.05-18.1 |
||||
- Rebuild for perl 5.16 |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.05-18 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 2.05-17 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri May 25 2012 Petr Pisar <ppisar@redhat.com> - 2.05-16 |
||||
- Update build-time dependencies |
||||
- Do not export private libraries |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.05-15 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Sun Jun 19 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.05-14 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.05-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.05-12 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.05-11 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 2.05-10 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.05-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.05-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Mon Mar 3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.05-7 |
||||
- rebuild for new perl (again) |
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.05-6 |
||||
- Autorebuild for GCC 4.3 |
||||
|
||||
* Fri Feb 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.05-5 |
||||
- rebuild for new perl |
||||
|
||||
* Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 2.05-4 |
||||
- Use fixperms macro instead of our own chmod incantation. |
||||
- BR ExtUtils::MakeMaker. |
||||
|
||||
* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 2.05-3 |
||||
- Fix find option order. |
||||
- Minor spec cleanup to more closely match cpanspec output. |
||||
|
||||
* Sat Feb 18 2006 Steven Pritchard <steve@kspei.com> 2.05-2 |
||||
- Rebuild. |
||||
|
||||
* Thu Feb 02 2006 Steven Pritchard <steve@kspei.com> 2.05-1 |
||||
- Update to 2.05. |
||||
- Drop explicit Requires: perl(Crypt::CBC). |
||||
- LD_RUN_PATH hack shouldn't be needed now. |
||||
- Trim file list a bit. |
||||
- License is BSD, more or less. |
||||
|
||||
* Sat Sep 17 2005 Steven Pritchard <steve@kspei.com> 2.03-2 |
||||
- Minor spec cleanup. |
||||
|
||||
* Fri Aug 26 2005 Steven Pritchard <steve@kspei.com> 2.03-1 |
||||
- Specfile autogenerated. |
@ -0,0 +1,94 @@
@@ -0,0 +1,94 @@
|
||||
Name: perl-Devel-PartialDump |
||||
Version: 0.15 |
||||
Release: 8%{?dist} |
||||
Summary: Partial dumping of data structures, optimized for argument printing |
||||
# from PartialDump.pm |
||||
License: GPL+ or Artistic |
||||
Group: Development/Libraries |
||||
URL: http://search.cpan.org/dist/Devel-PartialDump/ |
||||
Source0: http://www.cpan.org/authors/id/F/FL/FLORA/Devel-PartialDump-%{version}.tar.gz |
||||
BuildArch: noarch |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
# Moose has a manual dependency on Devel::PartialDump for enhanced reporting |
||||
# Devel::PartialDump itself requires Moose, so when bootstrapping we do a blind |
||||
# build of Devel::PartialDump without running the test suite, then build Moose, |
||||
# then rebuild Devel::PartialDump with Moose, running the test suite |
||||
%if !0%{?perl_bootstrap} |
||||
BuildRequires: perl(Moose) |
||||
%endif |
||||
BuildRequires: perl(namespace::clean) >= 0.20 |
||||
BuildRequires: perl(Sub::Exporter) |
||||
BuildRequires: perl(Test::use::ok) |
||||
BuildRequires: perl(Test::Warn) >= 0.21 |
||||
Requires: perl(namespace::clean) >= 0.20 |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%{?perl_default_filter} |
||||
|
||||
%description |
||||
This module is a data dumper optimized for logging of arbitrary parameters. |
||||
|
||||
%prep |
||||
%setup -q -n Devel-PartialDump-%{version} |
||||
|
||||
%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 {} \; |
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; |
||||
|
||||
%{_fixperms} $RPM_BUILD_ROOT/* |
||||
|
||||
%check |
||||
%if 0%{!?perl_bootstrap:1} |
||||
make test |
||||
%endif |
||||
|
||||
%files |
||||
%doc Changes |
||||
%{perl_vendorlib}/* |
||||
%{_mandir}/man3/* |
||||
|
||||
%changelog |
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 0.15-6 |
||||
- Perl 5.16 re-rebuild of bootstrapped packages |
||||
|
||||
* Wed Jun 20 2012 Petr Pisar <ppisar@redhat.com> - 0.15-5 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Apr 06 2012 Iain Arnell <iarnell@gmail.com> 0.15-4 |
||||
- avoid circular build dependency with perl-Moose (patch from Paul Howarth |
||||
rhbz#810532) |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.15-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 0.15-2 |
||||
- Perl mass rebuild |
||||
|
||||
* Fri May 20 2011 Iain Arnell <iarnell@gmail.com> 0.15-1 |
||||
- update to latest upstream |
||||
- bump namespace::clean dep to 0.20 |
||||
|
||||
* Wed Apr 27 2011 Iain Arnell <iarnell@gmail.com> 0.14-1 |
||||
- update to latest upstream version |
||||
- clean up spec for modern rpmbuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.13-2 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Sun Jul 04 2010 Iain Arnell <iarnell@gmail.com> 0.13-1 |
||||
- Specfile autogenerated by cpanspec 1.78. |
@ -0,0 +1,134 @@
@@ -0,0 +1,134 @@
|
||||
Name: perl-Email-Abstract |
||||
Version: 3.007 |
||||
Release: 1%{?dist} |
||||
Summary: Unified interface to mail representations |
||||
Group: Development/Libraries |
||||
License: GPL+ or Artistic |
||||
URL: http://search.cpan.org/dist/Email-Abstract/ |
||||
Source0: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Abstract-%{version}.tar.gz |
||||
|
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(Email::Simple) >= 1.998 |
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30 |
||||
BuildRequires: perl(MRO::Compat) |
||||
BuildRequires: perl(MIME::Entity), |
||||
BuildRequires: perl(Module::Pluggable) >= 1.5 |
||||
BuildRequires: perl(Test::More) >= 0.96 |
||||
BuildRequires: perl(lib) |
||||
BuildRequires: perl(strict) |
||||
BuildRequires: perl(warnings) |
||||
BuildRequires: perl(Scalar::Util) |
||||
%if 0%{?rhel} == 0 |
||||
BuildRequires: perl(Mail::Message) |
||||
BuildRequires: perl(Email::MIME) |
||||
%endif |
||||
BuildArch: noarch |
||||
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%description |
||||
"Email::Abstract" provides module writers with the ability to write |
||||
representation-independent mail handling code. For instance, in the |
||||
cases of "Mail::Thread" or "Mail::ListDetector", a key part of the code |
||||
involves reading the headers from a mail object. Where previously one |
||||
would either have to specify the mail class required, or to build a new |
||||
object from scratch, "Email::Abstract" can be used to perform certain |
||||
simple operations on an object regardless of its underlying |
||||
representation. |
||||
|
||||
%prep |
||||
%setup -q -n Email-Abstract-%{version} |
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor |
||||
make |
||||
|
||||
%install |
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' |
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' |
||||
chmod -R u+w $RPM_BUILD_ROOT/* |
||||
|
||||
%check |
||||
make test |
||||
|
||||
%files |
||||
%doc LICENSE Changes |
||||
%{perl_vendorlib}/Email/ |
||||
%{_mandir}/man3/*.3* |
||||
|
||||
%changelog |
||||
* Fri Mar 07 2014 Lubomir Rintel (GoodData) <lubo.rintel@gooddata.com> - 3.007-1.1 |
||||
- Do not BR packages that are not present in el7 |
||||
|
||||
* Wed Jan 08 2014 Ralf Corsépius <corsepiu@fedoraproject.org> - 3.007-1 |
||||
- Upstream update (RHBZ #1049728). |
||||
- Reflect upstream BR:-changes. |
||||
- Modernize spec. |
||||
|
||||
* Sat Jan 04 2014 Ralf Corsépius <corsepiu@fedoraproject.org> - 3.002-11 |
||||
- Add R: perl(Module::Pluggable) (RHBZ #1048430). |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.002-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.002-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Sat Jun 23 2012 Petr Pisar <ppisar@redhat.com> - 3.002-6 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.002-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 3.002-4 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.002-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.002-2 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Mon Jul 12 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 3.002-1 |
||||
- update to 3.002 |
||||
|
||||
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.001-5 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 3.001-4 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 3.001-3 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.001-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Fri Mar 13 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 3.001-1 |
||||
- update to 3.001 |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.134-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.134-3 |
||||
- Rebuild for perl 5.10 (again) |
||||
|
||||
* Mon Jan 28 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.134-2 |
||||
- rebuild for new perl |
||||
|
||||
* Wed Nov 28 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 2.134-1 |
||||
- 2.134 |
||||
|
||||
* Fri Aug 24 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 2.132-4 |
||||
- license fix |
||||
|
||||
* Mon Apr 16 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 2.132-3 |
||||
- add missing BR Email::MIME, Test::Pod, Test::Pod::Coverage |
||||
|
||||
* Mon Apr 2 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 2.132-2 |
||||
- remove LICENSE line from Makefile.PL |
||||
- add BR Module::Pluggable, Mail::Message |
||||
|
||||
* Sun Apr 1 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 2.132-1 |
||||
- Initial package for Fedora |
@ -0,0 +1,93 @@
@@ -0,0 +1,93 @@
|
||||
Name: perl-Email-Date-Format |
||||
Version: 1.002 |
||||
Release: 15%{?dist} |
||||
Summary: Produce RFC 2822 date strings |
||||
Group: Development/Libraries |
||||
License: GPL+ or Artistic |
||||
URL: http://search.cpan.org/dist/Email-Date-Format/ |
||||
Source0: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Date-Format-%{version}.tar.gz |
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
||||
BuildRequires: perl(Exporter) |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
BuildRequires: perl(Test::More) |
||||
BuildRequires: perl(Test::Pod) >= 1.14 |
||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.08 |
||||
BuildRequires: perl(Time::Local) |
||||
BuildArch: noarch |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%description |
||||
This module can be used to emit RFC 2822 style date strings. |
||||
|
||||
%prep |
||||
%setup -q -n Email-Date-Format-%{version} |
||||
|
||||
%build |
||||
sed -i '/LICENSE/ d' Makefile.PL |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor |
||||
make |
||||
|
||||
%install |
||||
rm -rf $RPM_BUILD_ROOT |
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' |
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' |
||||
chmod -R u+w $RPM_BUILD_ROOT/* |
||||
|
||||
%check |
||||
make test |
||||
|
||||
%clean |
||||
rm -rf $RPM_BUILD_ROOT |
||||
|
||||
%files |
||||
%defattr(-,root,root,-) |
||||
%doc README LICENSE |
||||
%{perl_vendorlib}/Email/ |
||||
%{_mandir}/man3/*.3* |
||||
|
||||
%changelog |
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-15 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Tue Nov 20 2012 Jitka Plesnikova <jplesnik@redhat.com> - 1.002-14 |
||||
- Update dependencies. |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 1.002-12 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-11 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.002-10 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.002-8 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.002-7 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.002-6 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.002-5 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.002-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Sat Feb 2 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.002-2 |
||||
- rebuild for new perl |
||||
|
||||
* Wed Dec 19 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.002-1 |
||||
- Initial package for Fedora |
@ -0,0 +1,141 @@
@@ -0,0 +1,141 @@
|
||||
Name: perl-Email-MIME-ContentType |
||||
Version: 1.017 |
||||
Release: 1%{?dist} |
||||
Summary: Parse a MIME Content-Type Header |
||||
|
||||
Group: Development/Libraries |
||||
License: GPL+ or Artistic |
||||
URL: http://search.cpan.org/dist/Email-MIME-ContentType/ |
||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-ContentType-%{version}.tar.gz |
||||
|
||||
BuildArch: noarch |
||||
BuildRequires: perl(blib) |
||||
BuildRequires: perl(Capture::Tiny) |
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(Exporter) >= 5.57 |
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30 |
||||
BuildRequires: perl(strict) |
||||
BuildRequires: perl(Test::More) >= 0.96 |
||||
BuildRequires: perl(Test::Pod) >= 1.41 |
||||
BuildRequires: perl(version) > 0.99 |
||||
BuildRequires: perl(warnings) |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%description |
||||
This module is responsible for parsing email content type headers according |
||||
to section 5.1 of RFC 2045. It returns a hash with entries for the type, the |
||||
subtype, and a hash of attributes. |
||||
|
||||
For backward compatibility with a really unfortunate misunderstanding of RFC |
||||
2045 by the early implementors of this module, 'discrete' and 'composite' are |
||||
also present in the returned hashref, with the values of 'type' and 'subtype' |
||||
respectively. |
||||
|
||||
|
||||
%prep |
||||
%setup -q -n Email-MIME-ContentType-%{version} |
||||
|
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor |
||||
make %{?_smp_mflags} |
||||
|
||||
|
||||
%install |
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' |
||||
chmod -R u+w $RPM_BUILD_ROOT/* |
||||
|
||||
|
||||
%check |
||||
make test |
||||
make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" |
||||
|
||||
|
||||
%files |
||||
%doc Changes LICENSE README |
||||
%{perl_vendorlib}/Email/ |
||||
%{_mandir}/man3/*.3pm* |
||||
|
||||
|
||||
%changelog |
||||
* Sun Aug 11 2013 Paul Howarth <paul@city-fan.org> - 1.017-1 |
||||
- Update to 1.017 |
||||
- Correct the longstanding and embarrassing misuse of "discrete" and |
||||
"composite" to mean "type" and "subtype"; the returned data still contains |
||||
the wrong old names so your code shouldn't break |
||||
- Repackage to update bugtracker, repo, etc. |
||||
- Make $STRICT_PARAMS actually work! (CPAN RT#87460) |
||||
- Don't need to remove empty directories from the buildroot |
||||
- Drop %%defattr, redundant since rpm 4.4 |
||||
- Explicitly run the release tests |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.015-16 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Sat Jul 20 2013 Petr Pisar <ppisar@redhat.com> - 1.015-15 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Sun Feb 24 2013 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.015-14 |
||||
- Add BR: perl(ExtUtils::MakeMaker) (Fix FTBFS #914271). |
||||
- Modernize spec. |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.015-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.015-12 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 1.015-11 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.015-10 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.015-9 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.015-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.015-7 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.015-6 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.015-5 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 23 2010 Marcela Mašláňová <mmaslano@redhat.com> - 1.015-4 |
||||
- rebuild |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.015-3 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.015-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Fri Mar 13 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.015-1 |
||||
- update to 1.015 |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.014-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.014-3 |
||||
- Rebuild for perl 5.10 (again) |
||||
|
||||
* Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.014-2 |
||||
- rebuild for new perl |
||||
|
||||
* Fri Mar 23 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.014-1 |
||||
- Update to 1.014. |
||||
|
||||
* Sat Nov 25 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.012-1 |
||||
- Update to 1.012. |
||||
|
||||
* Fri Oct 13 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.011-1 |
||||
- Update to 1.011. |
||||
|
||||
* Thu Sep 08 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.01-1 |
||||
- First build. |
@ -0,0 +1,132 @@
@@ -0,0 +1,132 @@
|
||||
Name: perl-Email-MIME-Encodings |
||||
Version: 1.315 |
||||
Release: 1%{?dist} |
||||
Summary: Unified interface to MIME encoding and decoding |
||||
|
||||
Group: Development/Libraries |
||||
License: GPL+ or Artistic |
||||
URL: http://search.cpan.org/dist/Email-MIME-Encodings/ |
||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-Encodings-%{version}.tar.gz |
||||
|
||||
BuildArch: noarch |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
BuildRequires: perl(MIME::Base64) >= 3.05 |
||||
BuildRequires: perl(MIME::QuotedPrint) >= 3.03 |
||||
BuildRequires: perl(Test::Pod) |
||||
BuildRequires: perl(Test::Pod::Coverage) |
||||
BuildRequires: perl(Capture::Tiny) |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%description |
||||
This module simply wraps "MIME::Base64" and "MIME::QuotedPrint" so that |
||||
you can throw the contents of a "Content-Transfer-Encoding" header at |
||||
some text and have the right thing happen. |
||||
|
||||
|
||||
%prep |
||||
%setup -q -n Email-MIME-Encodings-%{version} |
||||
|
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor |
||||
make %{?_smp_mflags} |
||||
|
||||
|
||||
%install |
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' |
||||
chmod -R u+w $RPM_BUILD_ROOT/* |
||||
|
||||
|
||||
%check |
||||
make test |
||||
|
||||
|
||||
%files |
||||
%doc Changes LICENSE README |
||||
%{perl_vendorlib}/Email/ |
||||
%{_mandir}/man3/*.3pm* |
||||
|
||||
|
||||
%changelog |
||||
* Fri Mar 7 2014 Tom Callaway <spot@fedoraproject.org> - 1.315-1 |
||||
- update to 1.315 |
||||
|
||||
* Fri Aug 9 2013 Paul Howarth <paul@city-fan.org> - 1.314-1 |
||||
- Update to 1.314 |
||||
- Add a third argument to encode/decode/codec to allow a fallback codec |
||||
- Package upstream's LICENSE file |
||||
- Drop %%defattr, redundant since rpm 4.4 |
||||
- Don't need to remove empty directories from the buildroot |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.313-15 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Sat Jul 20 2013 Petr Pisar <ppisar@redhat.com> - 1.313-14 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Sun Feb 24 2013 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.313-13 |
||||
- Add BR: perl(ExtUtils::MakeMaker) (Fix FTBFS #914272). |
||||
- Modernize spec. |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.313-12 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.313-11 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Tue Jun 12 2012 Petr Pisar <ppisar@redhat.com> - 1.313-10 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.313-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.313-8 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.313-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.313-6 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.313-5 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.313-4 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.313-3 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.313-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Tue May 5 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.313-1 |
||||
- update to 1.313 |
||||
|
||||
* Fri Mar 13 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.312-1 |
||||
- update to 1.312 |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.311-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.311-3 |
||||
- Rebuild for perl 5.10 (again) |
||||
|
||||
* Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.311-2 |
||||
- rebuild for new perl |
||||
|
||||
* Fri Mar 23 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.311-1 |
||||
- Update to 1.311. |
||||
|
||||
- New upstream maintainer. |
||||
* Tue Sep 19 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.310-2 |
||||
- Bump release dir to tagging problems. |
||||
|
||||
* Tue Sep 19 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.310-1 |
||||
- Update to 1.310. |
||||
- New upstream maintainer. |
||||
|
||||
* Thu Sep 08 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.3-1 |
||||
- First build. |
@ -0,0 +1,207 @@
@@ -0,0 +1,207 @@
|
||||
Name: perl-Email-MIME |
||||
Version: 1.926 |
||||
Release: 1%{?dist} |
||||
Summary: Easy MIME message parsing |
||||
|
||||
Group: Development/Libraries |
||||
License: GPL+ or Artistic |
||||
URL: http://search.cpan.org/dist/Email-MIME/ |
||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MIME-%{version}.tar.gz |
||||
|
||||
BuildArch: noarch |
||||
# Module Build |
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30 |
||||
# Module Runtime |
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(Email::Address) |
||||
BuildRequires: perl(Email::MessageID) |
||||
BuildRequires: perl(Email::MIME::ContentType) >= 1.016 |
||||
BuildRequires: perl(Email::MIME::Encodings) >= 1.314 |
||||
BuildRequires: perl(Email::Simple) >= 2.102 |
||||
BuildRequires: perl(Email::Simple::Creator) |
||||
BuildRequires: perl(Email::Simple::Header) |
||||
BuildRequires: perl(Encode) >= 1.9801 |
||||
BuildRequires: perl(MIME::Base64) |
||||
BuildRequires: perl(MIME::Types) >= 1.13 |
||||
BuildRequires: perl(parent) |
||||
BuildRequires: perl(Scalar::Util) |
||||
# Test Suite |
||||
BuildRequires: perl(blib) |
||||
BuildRequires: perl(Capture::Tiny) |
||||
BuildRequires: perl(Symbol) |
||||
BuildRequires: perl(Test::More) >= 0.96 |
||||
BuildRequires: perl(utf8) |
||||
BuildRequires: perl(version) > 0.99 |
||||
# Release Tests |
||||
BuildRequires: perl(Test::Pod) >= 1.41 |
||||
# Runtime |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) |
||||
Requires: perl(Email::Simple::Creator) |
||||
Requires: perl(MIME::Types) >= 1.13 |
||||
|
||||
Obsoletes: perl-Email-MIME-Creator < 1.457 |
||||
Obsoletes: perl-Email-MIME-Modifier < 1.445 |
||||
Provides: perl-Email-MIME-Creator = %{version} |
||||
Provides: perl-Email-MIME-Modifier = %{version} |
||||
|
||||
%description |
||||
This is an extension of the Email::Simple module, to handle MIME |
||||
encoded messages. It takes a message as a string, splits it up |
||||
into its constituent parts, and allows you access to various |
||||
parts of the message. Headers are decoded from MIME encoding. |
||||
|
||||
|
||||
%prep |
||||
%setup -q -n Email-MIME-%{version} |
||||
|
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor |
||||
make %{?_smp_mflags} |
||||
|
||||
|
||||
%install |
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' |
||||
chmod -R u+w $RPM_BUILD_ROOT/* |
||||
|
||||
|
||||
%check |
||||
make test |
||||
make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" |
||||
|
||||
|
||||
%files |
||||
%defattr(-,root,root,-) |
||||
%doc Changes LICENSE README |
||||
%{perl_vendorlib}/Email/ |
||||
%{_mandir}/man3/*.3pm* |
||||
|
||||
|
||||
%changelog |
||||
* Thu Mar 6 2014 Tom Callaway <spot@fedoraproject.org> - 1.926-1 |
||||
- update to 1.926 |
||||
|
||||
* Sun Aug 11 2013 Paul Howarth <paul@city-fan.org> - 1.924-1 |
||||
- Update to 1.924 |
||||
- Update use of Email::MIME::ContentType to match new, fixed hash keys: |
||||
type/subtype |
||||
|
||||
* Fri Aug 9 2013 Paul Howarth <paul@city-fan.org> - 1.923-1 |
||||
- Update to 1.923 |
||||
- Repackage, remove PEP links, update bugtracker |
||||
- Try to encode headers based on the header structure, if it has one, rather |
||||
than treating the header as a big string in all cases |
||||
- Do not call parts_set during walk_parts unless the parts have actually |
||||
changed |
||||
- When trying to decode a body, fall back to 7bit if the encoding is unknown; |
||||
trying to create a new body in an unknown encoding is still forbidden |
||||
- Avoid undefined warnings in debug_structure (CPAN RT#82388) |
||||
- Better error message when the given body is a ref but not a scalar |
||||
(CPAN RT#59205) |
||||
- Do not consider the part-ending CRLF part of the body |
||||
- Update build-reqs as per upstream requirements |
||||
- Explicitly run the release tests |
||||
- Drop %%defattr, redundant since rpm 4.4 |
||||
- Don't need to remove empty directories from the buildroot |
||||
- Classify buildreqs by usage |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.911-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Wed Jul 31 2013 Petr Pisar <ppisar@redhat.com> - 1.911-2 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Sat Feb 23 2013 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.911-1 |
||||
- Add BR: perl(ExtUtils::MakeMaker) (Fix FTBFS #914270). |
||||
- Upstream update. |
||||
- Modernize spec. |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.906-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.906-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Thu Jun 21 2012 Petr Pisar <ppisar@redhat.com> - 1.906-6 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.906-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 1.906-4 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.906-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Fri Dec 3 2010 Paul Howarth <paul@city-fan.oth> - 1.906-2 |
||||
- Obsolete perl-Email-MIME-Creator and perl-Email-MIME-Modifier, merged into |
||||
Email::MIME at version 1.900 |
||||
|
||||
* Fri Dec 3 2010 Paul Howarth <paul@city-fan.oth> - 1.906-1 |
||||
- Update to 1.906 (#659635) |
||||
- BR: perl(Email::Date::Format) and perl(Email::MessageID) |
||||
- BR: perl(Test::MinimumVersion) for additional test coverage |
||||
- Bump perl(Email::MIME::Encodings) version requirement to 1.313 |
||||
- Bump perl(Email::Simple) version requirement to 2.004 |
||||
|
||||
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.863-5 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.863-4 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.863-3 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.863-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Fri Mar 13 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 1.863-1 |
||||
- update to 1.863 |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.861-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.861-3 |
||||
- Rebuild for perl 5.10 (again) |
||||
|
||||
* Thu Jan 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.861-2 |
||||
- rebuild for new perl |
||||
|
||||
* Wed Nov 28 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.861-1 |
||||
- bump to 1.861 |
||||
|
||||
* Fri Mar 23 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.859-1 |
||||
- Update to 1.859. |
||||
|
||||
* Sat Feb 10 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.858-1 |
||||
- Update to 1.858. |
||||
|
||||
* Fri Dec 1 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.857-1 |
||||
- Update to 1.857. |
||||
|
||||
* Thu Oct 19 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.855-1 |
||||
- Update to 1.855. |
||||
|
||||
* Sun Oct 15 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.854-1 |
||||
- Update to 1.854. |
||||
|
||||
* Fri Oct 13 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.853-1 |
||||
- Update to 1.853. |
||||
|
||||
* Wed Sep 6 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.852-1 |
||||
- Update to 1.852. |
||||
|
||||
* Mon Aug 28 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.851-1 |
||||
- Update to 1.851. |
||||
|
||||
* Fri Jul 14 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.85-1 |
||||
- Update to 1.85. |
||||
|
||||
* Thu Sep 8 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.82-2 |
||||
- Requires Email::Simple (rpm "use base" shortcoming). |
||||
|
||||
* Thu Sep 08 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.82-1 |
||||
- First build. |
@ -0,0 +1,124 @@
@@ -0,0 +1,124 @@
|
||||
Name: perl-Email-MessageID |
||||
Version: 1.404 |
||||
Release: 1%{?dist} |
||||
Summary: Generate world unique message-ids |
||||
|
||||
Group: Development/Libraries |
||||
License: GPL+ or Artistic |
||||
URL: http://search.cpan.org/dist/Email-MessageID/ |
||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Email-MessageID-%{version}.tar.gz |
||||
|
||||
BuildArch: noarch |
||||
BuildRequires: perl(Email::Address) >= 1.80 |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
BuildRequires: perl(Test::Pod) >= 1.14 |
||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.08 |
||||
BuildRequires: perl(Sys::Hostname) |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
# rpm misses this |
||||
Requires: perl(Email::Address) |
||||
|
||||
%description |
||||
Message-ids are optional, but highly recommended, headers that identify |
||||
a message uniquely. This software generates a unique message-id. |
||||
|
||||
|
||||
%prep |
||||
%setup -q -n Email-MessageID-%{version} |
||||
|
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor |
||||
make %{?_smp_mflags} |
||||
|
||||
|
||||
%install |
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';' |
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';' |
||||
chmod -R u+w $RPM_BUILD_ROOT/* |
||||
|
||||
|
||||
%check |
||||
make test |
||||
|
||||
|
||||
%files |
||||
%defattr(-,root,root,-) |
||||
%doc Changes README LICENSE |
||||
%{perl_vendorlib}/Email/ |
||||
%{_mandir}/man3/*.3pm* |
||||
|
||||
|
||||
%changelog |
||||
* Fri Mar 7 2014 Tom Callaway <spot@fedoraproject.org> - 1.404-1 |
||||
- update to 1.404 |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.402-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Sun Jul 21 2013 Petr Pisar <ppisar@redhat.com> - 1.402-2 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Sun Feb 24 2013 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.402-1 |
||||
- Add BR: per(ExtUtils::MakeMaker) (Fix FTBFS #914273). |
||||
- Upstream update. |
||||
- Modernize spec. |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.401-14 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.401-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 1.401-12 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.401-11 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.401-10 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.401-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.401-8 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.401-7 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.401-6 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.401-5 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.401-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.401-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Thu Feb 12 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.401-2 |
||||
- Add R: perl(Email::Address). |
||||
|
||||
* Thu Feb 12 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.401-1 |
||||
- Upstream update. |
||||
- Add LICENSE to %%doc. |
||||
|
||||
* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.351-3 |
||||
- Rebuild for perl 5.10 (again) |
||||
|
||||
* Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.351-2 |
||||
- rebuild for new perl |
||||
|
||||
* Fri Mar 23 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.351-1 |
||||
- Update to 1.351. |
||||
|
||||
* Tue Jul 11 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.35-1 |
||||
- Update to 1.35. |
||||
|
||||
* Thu Sep 08 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.31-1 |
||||
- First build. |
@ -0,0 +1,136 @@
@@ -0,0 +1,136 @@
|
||||
Name: perl-Email-Reply |
||||
Version: 1.203 |
||||
Release: 2%{?dist} |
||||
Summary: Reply to an email message |
||||
Group: Development/Libraries |
||||
License: GPL+ or Artistic |
||||
URL: http://search.cpan.org/dist/Email-Reply/ |
||||
Source0: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Email-Reply-%{version}.tar.gz |
||||
BuildArch: noarch |
||||
# Module Build |
||||
BuildRequires: perl |
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30 |
||||
# Module Runtime |
||||
BuildRequires: perl(Email::Abstract) >= 2.01 |
||||
BuildRequires: perl(Email::Address) >= 1.80 |
||||
BuildRequires: perl(Email::MIME) >= 1.82 |
||||
BuildRequires: perl(Exporter) >= 5.57 |
||||
BuildRequires: perl(strict) |
||||
BuildRequires: perl(warnings) |
||||
# Test Suite |
||||
BuildRequires: perl(Capture::Tiny) |
||||
BuildRequires: perl(Email::MIME::Modifier) |
||||
BuildRequires: perl(Email::Simple) |
||||
BuildRequires: perl(Email::Simple::Creator) |
||||
BuildRequires: perl(Test::More) >= 0.88 |
||||
# Runtime |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) |
||||
|
||||
%description |
||||
This package provides a simple way to reply to email messages. |
||||
|
||||
%prep |
||||
%setup -q -n Email-Reply-%{version} |
||||
|
||||
%build |
||||
perl Makefile.PL INSTALLDIRS=vendor |
||||
make |
||||
|
||||
%install |
||||
make pure_install DESTDIR=%{buildroot} |
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';' |
||||
%{_fixperms} %{buildroot} |
||||
|
||||
%check |
||||
make test |
||||
|
||||
%files |
||||
%if 0%{?_licensedir:1} |
||||
%license LICENSE |
||||
%else |
||||
%doc LICENSE |
||||
%endif |
||||
%doc README |
||||
%{perl_vendorlib}/Email/ |
||||
%{_mandir}/man3/Email::Reply.3* |
||||
|
||||
%changelog |
||||
* Tue Mar 24 2015 Paul Howarth <paul@city-fan.org> - 1.203-2 |
||||
- Classify buildreqs by usage |
||||
- Use %%license where possible |
||||
- Don't need to remove empty directories from the buildroot |
||||
- Drop %%defattr, redundant since rpm 4.4 |
||||
- Don't use macros for commands |
||||
- Make %%files list more explicit |
||||
|
||||
* Fri Mar 20 2015 Tom Callaway <spot@fedoraproject.org> - 1.203-1 |
||||
- update to 1.203 |
||||
|
||||
* Mon Sep 01 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.202-19 |
||||
- Perl 5.20 rebuild |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-18 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Mon Aug 05 2013 Petr Pisar <ppisar@redhat.com> - 1.202-17 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-16 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Fri Feb 22 2013 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.202-15 |
||||
- Add BR: perl(Module::Pluggable) (FTBFS #914274). |
||||
- Modernize spec. |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-14 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Sat Jun 23 2012 Petr Pisar <ppisar@redhat.com> - 1.202-12 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-11 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 1.202-10 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.202-8 |
||||
- Rebuild to fix problems with vendorarch/lib (#661697) |
||||
|
||||
* Sat May 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.202-7 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.202-6 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.202-5 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.202-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.202-2 |
||||
- Rebuild for new perl |
||||
|
||||
* Sun Aug 26 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.201-4 |
||||
- 1.202 |
||||
- license fix |
||||
|
||||
* Fri May 4 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.201-3 |
||||
- fix missing BR |
||||
|
||||
* Sun Apr 29 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.201-2 |
||||
- fix LICENSE Warning on build |
||||
- add missing Test BR |
||||
|
||||
* Sun Apr 1 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.201-1 |
||||
- Initial package for Fedora |
@ -0,0 +1,157 @@
@@ -0,0 +1,157 @@
|
||||
Name: perl-Email-Sender |
||||
Version: 0.120002 |
||||
Release: 4%{?dist} |
||||
Summary: A library for sending email |
||||
License: GPL+ or Artistic |
||||
Group: Development/Libraries |
||||
URL: http://search.cpan.org/dist/Email-Sender/ |
||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/Email-Sender-%{version}.tar.gz |
||||
BuildArch: noarch |
||||
BuildRequires: perl(Capture::Tiny) >= 0.08 |
||||
BuildRequires: perl(Config) |
||||
BuildRequires: perl(Cwd) |
||||
BuildRequires: perl(Data::Dumper) |
||||
BuildRequires: perl(Email::Abstract) >= 3 |
||||
BuildRequires: perl(Email::Address) |
||||
BuildRequires: perl(Email::Simple) >= 1.998 |
||||
BuildRequires: perl(Exporter) |
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.11 |
||||
BuildRequires: perl(File::Temp) |
||||
BuildRequires: perl(JSON) |
||||
BuildRequires: perl(List::MoreUtils) |
||||
BuildRequires: perl(Moose) >= 0.70 |
||||
BuildRequires: perl(Moose::Role) |
||||
BuildRequires: perl(Net::SMTP) |
||||
BuildRequires: perl(Net::SMTP::SSL) |
||||
BuildRequires: perl(Pod::Coverage::TrustPod) |
||||
BuildRequires: perl(Sub::Exporter) |
||||
BuildRequires: perl(Sub::Exporter::Util) |
||||
BuildRequires: perl(Sub::Override) |
||||
BuildRequires: perl(Test::MinimumVersion) |
||||
BuildRequires: perl(Test::MockObject) |
||||
BuildRequires: perl(Test::More) >= 0.96 |
||||
BuildRequires: perl(Test::Pod) |
||||
BuildRequires: perl(Test::Pod::Coverage) |
||||
BuildRequires: perl(Throwable::Error) >= 0.100090 |
||||
BuildRequires: perl(Try::Tiny) |
||||
Requires: perl(Email::Abstract) >= 3 |
||||
Requires: perl(Net::SMTP::SSL) |
||||
Requires: perl(Throwable::Error) >= 0.100090 |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%{?perl_default_filter} |
||||
|
||||
%description |
||||
Email::Sender replaces the old and sometimes problematic Email::Send library, |
||||
which did a decent job at handling very simple email sending tasks, but was not |
||||
suitable for serious use, for a variety of reasons. |
||||
|
||||
%prep |
||||
%setup -q -n Email-Sender-%{version} |
||||
|
||||
# pod coverage test fails |
||||
rm -f t/release-pod-coverage.t |
||||
|
||||
%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 |
||||
RELEASE_TESTING=1 make test |
||||
|
||||
%files |
||||
%doc Changes LICENSE README |
||||
%{perl_vendorlib}/* |
||||
%{_mandir}/man3/* |
||||
|
||||
%changelog |
||||
* Mon Aug 05 2013 Petr Pisar <ppisar@redhat.com> - 0.120002-4 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.120002-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.120002-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Oct 19 2012 Iain Arnell <iarnell@gmail.com> 0.120002-1 |
||||
- update to latest upstream version |
||||
|
||||
* Sat Jul 21 2012 Iain Arnell <iarnell@gmail.com> 0.120001-1 |
||||
- update to latest upstream version |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.110005-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Sat Jun 23 2012 Petr Pisar <ppisar@redhat.com> - 0.110005-2 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Sun Mar 11 2012 Iain Arnell <iarnell@gmail.com> 0.110005-1 |
||||
- update to latest upstream version |
||||
|
||||
* Thu Feb 23 2012 Iain Arnell <iarnell@gmail.com> 0.110004-1 |
||||
- update to latest upstream version |
||||
|
||||
* Fri Feb 03 2012 Iain Arnell <iarnell@gmail.com> 0.110003-1 |
||||
- update to latest upstream version |
||||
|
||||
* Wed Feb 01 2012 Iain Arnell <iarnell@gmail.com> 0.110002-1 |
||||
- update to latest upstream version |
||||