tuibuilder_pel7ppc64lebuilder0
4 years ago
32 changed files with 5980 additions and 0 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
From 684cf85eeac78fd716f476a6b9678cc11336f8b6 Mon Sep 17 00:00:00 2001 |
||||
From: "Brian C. Lane" <bcl@redhat.com> |
||||
Date: Wed, 5 Dec 2018 08:52:51 -0800 |
||||
Subject: [PATCH] Rename package to gnupg1 (#1656282) |
||||
|
||||
gnupg2 is going to start using /usr/bin/gpg so we need to rename the |
||||
gnupg v1.4.x version to avoid conflicts. |
||||
--- |
||||
configure.ac | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git a/configure.ac b/configure.ac |
||||
index e5bf1bc1a..085ebd33e 100644 |
||||
--- a/configure.ac |
||||
+++ b/configure.ac |
||||
@@ -42,7 +42,7 @@ m4_define([mym4_betastring], |
||||
m4_define([mym4_isgit],m4_if(mym4_betastring,[],[no],[yes])) |
||||
m4_define([mym4_full_version],[mym4_version[]mym4_betastring]) |
||||
|
||||
-AC_INIT([gnupg],[mym4_full_version], [https://bugs.gnupg.org]) |
||||
+AC_INIT([gnupg1],[mym4_full_version], [https://bugs.gnupg.org]) |
||||
|
||||
|
||||
development_version=mym4_isgit |
||||
-- |
||||
2.19.2 |
||||
|
@ -0,0 +1,64 @@
@@ -0,0 +1,64 @@
|
||||
From f55b546a261651ad76a2a339768a599a4d84b4f5 Mon Sep 17 00:00:00 2001 |
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> |
||||
Date: Wed, 3 Jul 2013 11:01:02 +0200 |
||||
Subject: [PATCH] Link XS modules to libperl.so with EU::CBuilder on Linux |
||||
MIME-Version: 1.0 |
||||
Content-Type: text/plain; charset=UTF-8 |
||||
Content-Transfer-Encoding: 8bit |
||||
|
||||
<https://bugzilla.redhat.com/show_bug.cgi?id=960048> |
||||
<http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=327585#50> |
||||
|
||||
Signed-off-by: Petr Písař <ppisar@redhat.com> |
||||
--- |
||||
MANIFEST | 1 + |
||||
lib/ExtUtils/CBuilder/Platform/linux.pm | 25 +++++++++++++++++++++++++ |
||||
2 files changed, 26 insertions(+) |
||||
create mode 100644 lib/ExtUtils/CBuilder/Platform/linux.pm |
||||
|
||||
diff --git a/MANIFEST b/MANIFEST |
||||
index fdc8bd9..a7de63a 100644 |
||||
--- a/MANIFEST |
||||
+++ b/MANIFEST |
||||
@@ -25,6 +25,7 @@ lib/ExtUtils/CBuilder/Platform/android.pm |
||||
lib/ExtUtils/CBuilder/Platform/cygwin.pm |
||||
lib/ExtUtils/CBuilder/Platform/darwin.pm |
||||
lib/ExtUtils/CBuilder/Platform/dec_osf.pm |
||||
+lib/ExtUtils/CBuilder/Platform/linux.pm |
||||
lib/ExtUtils/CBuilder/Platform/os2.pm |
||||
t/00-have-compiler.t |
||||
t/01-basic.t |
||||
diff --git a/lib/ExtUtils/CBuilder/Platform/linux.pm b/lib/ExtUtils/CBuilder/Platform/linux.pm |
||||
new file mode 100644 |
||||
index 0000000..823f852 |
||||
--- /dev/null |
||||
+++ b/lib/ExtUtils/CBuilder/Platform/linux.pm |
||||
@@ -0,0 +1,25 @@ |
||||
+package ExtUtils::CBuilder::Platform::linux; |
||||
+ |
||||
+use strict; |
||||
+use ExtUtils::CBuilder::Platform::Unix; |
||||
+use File::Spec; |
||||
+ |
||||
+our $VERSION = '0.280230'; |
||||
+our @ISA = qw(ExtUtils::CBuilder::Platform::Unix); |
||||
+ |
||||
+sub link { |
||||
+ my ($self, %args) = @_; |
||||
+ my $cf = $self->{config}; |
||||
+ |
||||
+ # Link XS modules to libperl.so explicitly because multiple |
||||
+ # dlopen(, RTLD_LOCAL) hides libperl symbols from XS module. |
||||
+ local $cf->{lddlflags} = $cf->{lddlflags}; |
||||
+ if ($ENV{PERL_CORE}) { |
||||
+ $cf->{lddlflags} .= ' -L' . $self->perl_inc(); |
||||
+ } |
||||
+ $cf->{lddlflags} .= ' -lperl'; |
||||
+ |
||||
+ return $self->SUPER::link(%args); |
||||
+} |
||||
+ |
||||
+1; |
||||
-- |
||||
2.13.6 |
||||
|
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
--- IP.pm |
||||
+++ IP.pm |
||||
@@ -416,7 +416,9 @@ sub intip { |
||||
|
||||
my $int = ip_bintoint($self->binip()); |
||||
|
||||
- if (!$int) { |
||||
+ # this then fails for 0.0.0.0, which is wrong. |
||||
+ # |
||||
+ if (not defined $int) { |
||||
$self->{error} = $ERROR; |
||||
$self->{errno} = $ERRNO; |
||||
return; |
||||
@@ -625,9 +627,11 @@ sub last_int { |
||||
|
||||
return ($self->{last_int}) if defined($self->{last_int}); |
||||
|
||||
- my $last_bin = $self->last_bin() or return; |
||||
+ my $last_bin = $self->last_bin(); |
||||
+ return unless defined $last_bin; |
||||
|
||||
- my $last_int = ip_bintoint($last_bin, $self->version()) or return; |
||||
+ my $last_int = ip_bintoint($last_bin, $self->version()); |
||||
+ return unless defined $last_int; |
||||
|
||||
$self->{last_int} = $last_int; |
||||
|
||||
@@ -1267,11 +1271,13 @@ sub ip_prefix_to_range { |
||||
# Turn into a binary |
||||
# Get last address |
||||
# Turn into an IP |
||||
- my $binip = ip_iptobin($ip, $ip_version) or return; |
||||
+ my $binip = ip_iptobin($ip, $ip_version); |
||||
+ return unless defined $binip; |
||||
|
||||
return unless (ip_check_prefix($binip, $len, $ip_version)); |
||||
|
||||
- my $lastip = ip_last_address_bin($binip, $len, $ip_version) or return; |
||||
+ my $lastip = ip_last_address_bin($binip, $len, $ip_version); |
||||
+ return unless defined $lastip; |
||||
return unless ($lastip = ip_bintoip($lastip, $ip_version)); |
||||
|
||||
return ($ip, $lastip); |
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
--- ipcount |
||||
+++ ipcount |
||||
@@ -1,4 +1,4 @@ |
||||
-#!perl -w |
||||
+#!/usr/bin/perl -w |
||||
|
||||
# Copyright (c) 2000 RIPE NCC |
||||
# |
||||
--- iptab |
||||
+++ iptab |
||||
@@ -1,4 +1,4 @@ |
||||
-#!perl |
||||
+#!/usr/bin/perl |
||||
|
||||
use Net::IP; |
||||
use strict; |
@ -0,0 +1,137 @@
@@ -0,0 +1,137 @@
|
||||
--- Makefile.PL |
||||
+++ Makefile.PL |
||||
@@ -17,7 +17,7 @@ my %WriteMakefileArgs = ( |
||||
"NAME" => "Sub::Exporter::Progressive", |
||||
"PREREQ_PM" => {}, |
||||
"TEST_REQUIRES" => { |
||||
- "Test::More" => "0.88" |
||||
+ "Test::More" => "0.47" |
||||
}, |
||||
"VERSION" => "0.001013", |
||||
"test" => { |
||||
@@ -27,7 +27,7 @@ my %WriteMakefileArgs = ( |
||||
|
||||
|
||||
my %FallbackPrereqs = ( |
||||
- "Test::More" => "0.88" |
||||
+ "Test::More" => "0.47" |
||||
); |
||||
|
||||
|
||||
--- t/all.t |
||||
+++ t/all.t |
||||
@@ -2,7 +2,7 @@ |
||||
use strict; |
||||
use warnings; |
||||
|
||||
-use Test::More; |
||||
+use Test::More tests => 6; |
||||
use lib 't/lib'; |
||||
use A::JunkAll; |
||||
|
||||
@@ -17,5 +17,3 @@ use A::JunkAll ':all'; |
||||
ok(main->can('junk1'), 'sub exported'); |
||||
ok(main->can('junk2'), 'sub exported'); |
||||
ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded'); |
||||
- |
||||
-done_testing; |
||||
--- t/basic.t |
||||
+++ t/basic.t |
||||
@@ -2,11 +2,9 @@ |
||||
use strict; |
||||
use warnings; |
||||
|
||||
-use Test::More; |
||||
+use Test::More tests => 2; |
||||
use lib 't/lib'; |
||||
use A::Junk 'junk1'; |
||||
|
||||
ok(main->can('junk1'), 'requested sub exported'); |
||||
ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded'); |
||||
- |
||||
-done_testing; |
||||
--- t/default.t |
||||
+++ t/default.t |
||||
@@ -2,11 +2,9 @@ |
||||
use strict; |
||||
use warnings; |
||||
|
||||
-use Test::More; |
||||
+use Test::More tests => 2; |
||||
use lib 't/lib'; |
||||
use A::Junk; |
||||
|
||||
ok(main->can('junk2'), 'sub exported'); |
||||
ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded'); |
||||
- |
||||
-done_testing; |
||||
--- t/release-changes_has_content.t |
||||
+++ t/release-changes_has_content.t |
||||
@@ -10,7 +10,6 @@ BEGIN { |
||||
|
||||
use Test::More tests => 2; |
||||
|
||||
-note 'Checking Changes'; |
||||
my $changes_file = 'Changes'; |
||||
my $newver = '0.001013'; |
||||
my $trial_token = '-TRIAL'; |
||||
@@ -22,8 +21,6 @@ SKIP: { |
||||
ok(_get_changes($newver), "$changes_file has content for $newver"); |
||||
} |
||||
|
||||
-done_testing; |
||||
- |
||||
# _get_changes copied and adapted from Dist::Zilla::Plugin::Git::Commit |
||||
# by Jerome Quelin |
||||
sub _get_changes |
||||
--- t/sex.t |
||||
+++ t/sex.t |
||||
@@ -2,7 +2,7 @@ |
||||
use strict; |
||||
use warnings; |
||||
|
||||
-use Test::More; |
||||
+use Test::More tests => 2; |
||||
BEGIN { |
||||
plan skip_all => 'Sub::Exporter not installed' |
||||
unless eval { require Sub::Exporter }; |
||||
@@ -13,5 +13,3 @@ use A::Junk 'junk1' => { -as => 'junk' } |
||||
|
||||
ok(main->can('junk'), 'sub renamed with Sub::Exporter'); |
||||
ok($INC{'Sub/Exporter.pm'}, 'Sub::Exporter loaded'); |
||||
- |
||||
-done_testing; |
||||
--- t/tags.t |
||||
+++ t/tags.t |
||||
@@ -1,7 +1,7 @@ |
||||
use strict; |
||||
use warnings; |
||||
|
||||
-use Test::More; |
||||
+use Test::More tests => 44; |
||||
use Carp; |
||||
use lib 't/lib'; |
||||
use A::Junk ':other'; |
||||
@@ -64,5 +64,3 @@ SKIP: { |
||||
check_tag('bar -default', [qw/foo bar/], [qw/baz/]); |
||||
} |
||||
|
||||
-done_testing; |
||||
- |
||||
--- t/version-check.t |
||||
+++ t/version-check.t |
||||
@@ -1,7 +1,7 @@ |
||||
|
||||
use strict; |
||||
use warnings; |
||||
-use Test::More; |
||||
+use Test::More tests => 5; |
||||
|
||||
BEGIN { |
||||
package AAA; |
||||
@@ -38,5 +38,3 @@ ok(eval('use AAA 1; 1'), 'perl built-in |
||||
); |
||||
} |
||||
|
||||
-done_testing; |
||||
- |
@ -0,0 +1,46 @@
@@ -0,0 +1,46 @@
|
||||
From e89e07669e5bb46023f08d5c0b69065a931f9d27 Mon Sep 17 00:00:00 2001 |
||||
From: "Brian C. Lane" <bcl@redhat.com> |
||||
Date: Mon, 30 Jan 2012 09:47:40 -0800 |
||||
Subject: [PATCH] Call gcc directly to build assembly files, so that CFLAGS |
||||
which are needed during preprocessing (-DPIC) get properly |
||||
passed to the preprocessor. |
||||
|
||||
--- |
||||
configure.ac | 1 + |
||||
mpi/Makefile.am | 5 +++++ |
||||
2 files changed, 6 insertions(+), 0 deletions(-) |
||||
|
||||
diff --git a/configure.ac b/configure.ac |
||||
index 5dc0a52..55d9bc2 100644 |
||||
--- a/configure.ac |
||||
+++ b/configure.ac |
||||
@@ -1398,6 +1398,7 @@ fi |
||||
|
||||
AM_CONDITIONAL(CROSS_COMPILING, test x$cross_compiling = xyes) |
||||
|
||||
+AM_CONDITIONAL(USING_GCC, test x$GCC = xyes) |
||||
|
||||
# add some extra libs here so that previous tests don't fail for |
||||
# mysterious reasons - the final link step should bail out. |
||||
diff --git a/mpi/Makefile.am b/mpi/Makefile.am |
||||
index 7610e27..27d36b8 100644 |
||||
--- a/mpi/Makefile.am |
||||
+++ b/mpi/Makefile.am |
||||
@@ -69,9 +69,14 @@ libmpi_a_LIBADD = $(common_asm_objects) @MPI_EXTRA_ASM_OBJS@ |
||||
|
||||
# cancel the default rules used by libtool which do not really |
||||
# work and add one to cpp .S files |
||||
+if USING_GCC |
||||
+.S.o: |
||||
+ $(COMPILE) $(AM_CCASFLAGS) -c $< |
||||
+else |
||||
.S.o: |
||||
$(CPP) $(INCLUDES) $(DEFS) $< | grep -v '^#' > _$*.s |
||||
$(COMPILE) $(AM_CCASFLAGS) -c _$*.s |
||||
mv -f _$*.o $*.o |
||||
+endif |
||||
|
||||
.S.lo: |
||||
-- |
||||
1.7.6.5 |
||||
|
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
spawn -noecho ./g10/gpg --homedir . --run-as-shm-coprocess 0 |
||||
while {1} { expect { |
||||
"shared memory coprocessing is not available" {exit 1} |
||||
"Go ahead and type your message" {exit 0} |
||||
} } |
@ -0,0 +1,732 @@
@@ -0,0 +1,732 @@
|
||||
# add -fcommon to the flags until upstream fixes 'multiple definition ...' warnings |
||||
%define _legacy_common_support 1 |
||||
|
||||
Summary: A GNU utility for secure communication and data storage |
||||
Name: gnupg1 |
||||
Version: 1.4.23 |
||||
Release: 14%{?dist} |
||||
License: GPLv3+ with exceptions |
||||
URL: http://www.gnupg.org/ |
||||
Source0: https://gnupg.org/ftp/gcrypt/gnupg/gnupg-%{version}.tar.bz2 |
||||
Source1: https://gnupg.org/ftp/gcrypt/gnupg/gnupg-%{version}.tar.bz2.sig |
||||
Source2: gnupg-shm-coprocessing.expect |
||||
Patch0000: gnupg-1.4.1-gcc.patch |
||||
Patch0001: 0001-Rename-package-to-gnupg1-1656282.patch |
||||
|
||||
BuildRequires: gcc |
||||
# Requires autoconf >= 2.60 because earlier autoconf didn't define $localedir. |
||||
BuildRequires: autoconf >= 2.60 |
||||
BuildRequires: git-core |
||||
BuildRequires: automake, bzip2-devel, expect, ncurses-devel |
||||
BuildRequires: openldap-devel, readline-devel, zlib-devel, gettext-devel |
||||
BuildRequires: curl-devel |
||||
BuildRequires: make |
||||
%ifnarch s390 s390x |
||||
BuildRequires: libusb-devel |
||||
%endif |
||||
# pgp-tools, perl-GnuPG-Interface include 'Requires: gpg' -- Rex |
||||
Provides: gpg1 = %{version}-%{release} |
||||
|
||||
%description |
||||
GnuPG (GNU Privacy Guard) is a GNU utility for encrypting data and |
||||
creating digital signatures. GnuPG has advanced key management |
||||
capabilities and is compliant with the proposed OpenPGP Internet |
||||
standard described in RFC2440. Since GnuPG doesn't use any patented |
||||
algorithm, it is not compatible with any version of PGP2 (PGP2.x uses |
||||
only IDEA for symmetric-key encryption, which is patented worldwide). |
||||
|
||||
%prep |
||||
%autosetup -S git -n gnupg-%{version} |
||||
# Convert these files to UTF-8, per rpmlint. |
||||
iconv -f iso-8859-15 -t utf-8 THANKS > THANKS.utf8 |
||||
mv THANKS.utf8 THANKS |
||||
git commit -a -m "run iconv" |
||||
git tag -a %{name}-%{version} -m "baseline" |
||||
|
||||
autoreconf -vif |
||||
|
||||
%build |
||||
configure_flags= |
||||
|
||||
%ifarch ppc64 sparc64 |
||||
configure_flags=--disable-asm |
||||
%endif |
||||
|
||||
export CFLAGS="%{build_cflags} -DPIC" |
||||
%configure \ |
||||
--disable-rpath \ |
||||
--disable-exec \ |
||||
--with-zlib --enable-noexecstack \ |
||||
$configure_flags |
||||
%make_build |
||||
env LANG=C expect -f %{SOURCE2} |
||||
|
||||
%check |
||||
make check |
||||
|
||||
%install |
||||
%make_install |
||||
sed 's^\.\./g[0-9\.]*/^^g' tools/lspgpot > lspgpot |
||||
install -pm755 lspgpot %{buildroot}%{_bindir}/lspgpot |
||||
rm -f %{buildroot}/%{_infodir}/dir |
||||
|
||||
# Rename the binaries |
||||
for f in gpg gpgv gpg-zip gpgsplit; do |
||||
mv %{buildroot}%{_bindir}/${f} %{buildroot}%{_bindir}/${f}1 |
||||
done |
||||
|
||||
# Rename the manpages |
||||
for f in gpg gpgv gpg-zip; do |
||||
mv %{buildroot}%{_mandir}/man1/${f}.1 %{buildroot}%{_mandir}/man1/${f}1.1 |
||||
done |
||||
%find_lang %{name} |
||||
|
||||
%files -f %{name}.lang |
||||
%license COPYING |
||||
%doc AUTHORS BUGS NEWS PROJECTS README THANKS TODO |
||||
%doc doc/DETAILS doc/HACKING doc/OpenPGP doc/samplekeys.asc |
||||
%{_bindir}/gpg1 |
||||
%{_bindir}/gpgv1 |
||||
%{_bindir}/gpg-zip1 |
||||
%{_bindir}/gpgsplit1 |
||||
%{_bindir}/lspgpot |
||||
%dir %{_datadir}/%{name} |
||||
%{_datadir}/%{name}/FAQ |
||||
%{_datadir}/%{name}/options.skel |
||||
%{_infodir}/gnupg1.info.* |
||||
%{_mandir}/man1/gpg-zip1.1.gz |
||||
%{_mandir}/man1/gpg1.1.gz |
||||
%{_mandir}/man1/gpgv1.1.gz |
||||
|
||||
%changelog |
||||
* Tue Dec 01 2020 Brian C. Lane <bcl@redhat.com> - 1.4.23-14 |
||||
- Add make to BuildRequires |
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-13 |
||||
- Second attempt - Rebuilt for |
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild |
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-12 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild |
||||
|
||||
* Thu Feb 06 2020 Brian C. Lane <bcl@redhat.com> - 1.4.23-11 |
||||
- Add -fcommon to the flags to avoid the GCC 10 'multiple definition of ...' warnings |
||||
Resolves: rhbz#1799431 |
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-10 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild |
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||
|
||||
* Wed Apr 24 2019 Björn Esser <besser82@fedoraproject.org> - 1.4.23-8 |
||||
- Remove hardcoded gzip suffix from GNU info pages |
||||
|
||||
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.23-7 |
||||
- Rebuild for readline 8.0 |
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||
|
||||
* Mon Dec 10 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.23-5 |
||||
- Pass -DPIC to CFLAGS |
||||
|
||||
* Sat Dec 08 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.23-4 |
||||
- Use CFLAGS/LDFLAGS provided by RPM |
||||
|
||||
* Wed Dec 05 2018 Brian C. Lane <bcl@redhat.com> - 1.4.23-3 |
||||
- Rename the package to gnupg1 (#1656282) |
||||
- Rename the binarys to gpg1, gpgv1, gpg-zip1, gpgsplit1 (#1656282) |
||||
- Remove keyserver support at the suggestion of upstream (#1656282) |
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.23-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* Fri Jun 15 2018 Brian C. Lane <bcl@redhat.com> - 1.4.23-1 |
||||
- New upstream v1.4.23 (#1589802,#1589620,#1589624) |
||||
- Remove patches included in upstream release |
||||
- Note that this includes the fix for [CVE-2018-12020] |
||||
|
||||
* Fri Jun 08 2018 Brian C. Lane <bcl@redhat.com> - 1.4.22-7 |
||||
- doc Remove documentation for future option faked sys |
||||
- build Don't use dev srandom on OpenBSD |
||||
- Do not use C99 feature |
||||
- g10 Fix regexp sanitization |
||||
- g10 Push compress filter only if compressed |
||||
- gpg Sanitize diagnostic with the original file name [CVE-2018-12020] |
||||
|
||||
* Mon Feb 19 2018 Brian C. Lane <bcl@redhat.com> - 1.4.22-6 |
||||
- Add gcc BuildRequires for future minimal buildroot support |
||||
|
||||
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.22-5 |
||||
- Escape macros in %%changelog |
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.22-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.22-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.22-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Thu Jul 20 2017 Brian C. Lane <bcl@redhat.com> - 1.4.22-1 |
||||
- Removed workaround for ARM build problems fixed by upstream. |
||||
- Switch to using %%autosetup macro |
||||
- Update Source to use https instead of ftp |
||||
- New upstream v1.4.22 |
||||
- build: Avoid check gpg --version during make distcheck. (wk) |
||||
- indent: Fix indentation of an if block. (wk) |
||||
- gpg: Fix memory leak. (gniibe) |
||||
- rsa: Reduce secmem pressure. (gniibe) |
||||
- rsa: Allow different build directory. (gniibe) |
||||
- rsa: Add exponent blinding. (mb) |
||||
- mpi: Minor fix for mpi_pow. (gniibe) |
||||
- mpi: Same computation for square and multiply for mpi_pow. (gniibe) |
||||
- mpi: Simplify mpi_powm. (gniibe) |
||||
- mpi: Fix ARM assembler in longlong.h. (marcus.brinkmann) (#1424619) |
||||
- g10: Fix secmem leak. (ineiev) |
||||
- gpg: Fix exporting of zero length user ID packets. (wk) |
||||
- tools: Fix option parsing for gpg-zip. (neal) |
||||
|
||||
* Mon May 15 2017 Brian C. Lane <bcl@redhat.com> - 1.4.21-4 |
||||
+ Build with -O1 on arm to work around gcc problems with -O2 in rhbz#1424619 |
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.21-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.4.21-2 |
||||
- Rebuild for readline 7.x |
||||
|
||||
* Mon Aug 22 2016 Brian C. Lane <bcl@redhat.com> - 1.4.21-1 |
||||
- New upstream v1.4.21 |
||||
- Fix critical security bug in the RNG [CVE-2016-6313] (#1366105) |
||||
- Tweak default options for gpgv |
||||
- By default do not anymore emit the GnuPG version with --armor |
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.20-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Mon Dec 21 2015 Brian C. Lane <bcl@redhat.com> 1.4.20-1 |
||||
- New upstream v1.4.20 (#1293112) |
||||
- Reject signatures made using the MD5 hash algorithm unless the new option --allow-weak-digest-algos or --pgp2 are given. |
||||
- New option --weak-digest to specify hash algorithms which should be considered weak. |
||||
- Changed default cipher for symmetric-only encryption to AES-128. |
||||
- Fix for DoS when importing certain garbled secret keys. |
||||
- Improved error reporting for secret subkey w/o corresponding public subkey. |
||||
- Improved error reporting in decryption due to wrong algorithm. |
||||
- Fix cluttering of stdout with trustdb info in double verbose mode. |
||||
- Pass a DBUS envvar to gpg-agent for use by gnome-keyring. |
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.19-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Mon Jun 15 2015 Brian C. Lane <bcl@redhat.com> 1.4.19-2 |
||||
- Bump release so f20 version doesn't break upgrade path (#1231428) |
||||
|
||||
* Fri Feb 27 2015 Brian C. Lane <bcl@redhat.com> 1.4.19-1 |
||||
- New upstream v1.4.19 |
||||
- Use ciphertext blinding for Elgamal decryption [CVE-2014-3591] |
||||
- Fixed data-dependent timing variations in modular exponentiation [related to CVE-2015-0837] |
||||
- Drop patches now included upstream |
||||
|
||||
* Fri Oct 17 2014 Brian C. Lane <bcl@redhat.com> 1.4.18-4 |
||||
- Add kbnode_t needed for import filter patch |
||||
|
||||
* Thu Oct 16 2014 Brian C. Lane <bcl@redhat.com> 1.4.18-3 |
||||
- Adding patch for rhbz#1127013 / issue1680 - import filter too strict |
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.18-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
||||
|
||||
* Mon Jun 30 2014 Brian C. Lane <bcl@redhat.com> 1.4.18-1 |
||||
- New upstream v1.4.18 |
||||
- Fix a regression in 1.4.17 if more than one keyid is given to --recv-keys et al. |
||||
- Cap RSA and Elgamal keysize at 4096 bit also for unattended key generation. |
||||
|
||||
* Mon Jun 23 2014 Brian C. Lane <bcl@redhat.com> 1.4.17-1 |
||||
- New upstream v1.4.17 |
||||
- Avoid DoS due to garbled compressed data packets. |
||||
- Screen keyserver reponses to avoid import of unwanted keys by rogue servers. |
||||
- Add hash algorithms to the "sig" records of the colon output. |
||||
- More specific reason codes for INV_RECP status. |
||||
- Drop gpg.ru.1 |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.16-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Thu Feb 27 2014 Brian C. Lane <bcl@redhat.com> 1.4.16-4 |
||||
- Cleanup some autoreconf complaints |
||||
|
||||
* Sat Dec 21 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.4.16-3 |
||||
- Drop INSTALL from docs. |
||||
- Fix bogus dates in %%changelog. |
||||
|
||||
* Wed Dec 18 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.16-2 |
||||
- New upstream v1.4.16 |
||||
fixes for CVE-2013-4576 |
||||
|
||||
* Mon Oct 07 2013 Brian C. Lane <bcl@redhat.com> 1.4.15-1 |
||||
- New upstream v1.4.15 |
||||
fixes for CVE-2013-4402 (#1015967) |
||||
fixes for CVE-2013-4351 (#1010140) |
||||
|
||||
* Mon Jul 29 2013 Brian C. Lane <bcl@redhat.com> 1.4.14-1 |
||||
- New upstream v1.4.14 |
||||
fixes for CVE-2013-4242 (#988592) |
||||
includes fix for build on big-endian arches |
||||
|
||||
* Sat Jan 26 2013 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.13-3 |
||||
- Add -vif to autoreconf to fix build failure |
||||
|
||||
* Mon Jan 07 2013 Dan Horák <dan[at]danny.cz> 1.4.13-2 |
||||
- fix build on big-endian arches (gnupg bug #1461) |
||||
|
||||
* Wed Jan 02 2013 Brian C. Lane <bcl@redhat.com> 1.4.13-1 |
||||
- New upstream v1.4.13 |
||||
fixes for CVE-2012-6085 (#891142) |
||||
|
||||
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.12-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Mon Jan 30 2012 Brian C. Lane <bcl@redhat.com> - 1.4.12-1 |
||||
- New upstream v1.4.12 |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.11-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Oct 20 2010 Brian C. Lane <bcl@redhat.com> 1.4.11-2 |
||||
- Added ownership of %%dir %%{_libexecdir}/gnupg (#644576) |
||||
|
||||
* Mon Oct 18 2010 Brian C. Lane <bcl@redhat.com> 1.4.11-1 |
||||
- New upstream v1.4.11 |
||||
- Dropped patch gnupg-1.4.6-dir.patch, now in upstream |
||||
|
||||
* Wed Jul 21 2010 Brian C. Lane <bcl@redhat.com> 1.4.10-2 |
||||
- Reviving gnupg 1.x series for F-13, F-14 and rawhide |
||||
|
||||
* Wed Sep 2 2009 Nalin Dahyabhai <nalin@redhat.com> 1.4.10-1 |
||||
- update to 1.4.10 |
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Thu Feb 19 2009 Nalin Dahyabhai <nalin@redhat.com> |
||||
- switch from %%{_libdir}/%%{name} as libexecdir to regular old %%{_libexecdir} |
||||
(part of #225847) |
||||
- remove explicit configure arguments to use bzip2 and readline, which are |
||||
the default and trigger errors when not present, but continue to explicitly |
||||
request zlib so that we don't fall back to the internal one if something |
||||
ever looks "off" about the system copy (part of #225847) |
||||
- convert the ru manual and doc files to UTF-8 (the ones which aren't already, |
||||
rpmlint) |
||||
|
||||
* Tue Jul 22 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.9-4 |
||||
- describe license as actually GPLv3+ with exceptions rather than just GPLv3+ |
||||
(Todd Zullinger, #447772) |
||||
- drop unneeded patch to use gpgkeys_ldap for ldaps: URLs (#447772) |
||||
|
||||
* Tue May 27 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.9-3 |
||||
- note license is actually GPLv3+ rather than just GPLv3 (Todd Zullinger, |
||||
#447772) |
||||
|
||||
* Sat May 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.4.9-2 |
||||
- fix build failure with curl-7.18.1+ and gcc-4.3+ (#447772) |
||||
|
||||
* Mon May 19 2008 Dennis Gilmore <dennis@ausil.us> - 1.4.9-1.1 |
||||
- rebuild for sparc |
||||
|
||||
* Wed Mar 26 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.9-1 |
||||
- update to 1.4.9 to fix a possible vulnerability in 1.4.8 |
||||
- add a disttag |
||||
- drop patch to let us specify a dependent library for readline, as the |
||||
readline package now links with its dependency |
||||
|
||||
* Wed Mar 26 2008 Rex Dieter <rdieter@fedoraproject.org> - 1.4.8-5 |
||||
- drop Provides: openpgp |
||||
- versioned Provides: gpg |
||||
|
||||
* Wed Mar 26 2008 Dennis Gilmore <dennis@ausil.us> - 1.4.8-4 |
||||
- disable asm on sparc64 |
||||
|
||||
* Mon Feb 25 2008 Nalin Dahyabhai <nalin@redhat.com> - 1.4.8-3 |
||||
- rebuild |
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.8-2 |
||||
- Autorebuild for GCC 4.3 |
||||
|
||||
* Thu Dec 20 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.8-1 |
||||
- update to 1.4.8, noting license change to GPLv3 |
||||
|
||||
* Tue Dec 04 2007 Rex Dieter <rdieter[AT]fedoraproject.org> - 1.4.7-8 |
||||
- respin for openldap |
||||
|
||||
* Thu Aug 16 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.7-7 |
||||
- clarify license |
||||
|
||||
* Fri Mar 9 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.7-6 |
||||
- require autoconf >= 2.60, noting that we need it to define $localedir, to |
||||
avoid cases where using older versions causes gnupg to not be able to find |
||||
locale data (#231595) |
||||
|
||||
* Mon Mar 5 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.7-3 |
||||
- update to 1.4.7, changing the default to not allow multiple plaintexts in |
||||
a single stream |
||||
|
||||
* Tue Feb 27 2007 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-4 |
||||
- flip the switch on libtermcap/ncurses (#230187) |
||||
- rpmlint fixups |
||||
|
||||
* Wed Dec 6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-3 |
||||
- rebuild |
||||
|
||||
* Wed Dec 6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-2 |
||||
- rebuild |
||||
|
||||
* Wed Dec 6 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.6-1 |
||||
- update to 1.4.6, incorporating fixes for CVE-2006-6169 and CVE-2006-6235 |
||||
|
||||
* Tue Dec 5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-13 |
||||
- apply the termlib patch again |
||||
|
||||
* Tue Dec 5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-12 |
||||
- don't apply the non-security termlib patch |
||||
|
||||
* Tue Dec 5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-11 |
||||
- rebuild |
||||
|
||||
* Tue Dec 5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-10 |
||||
- incorporate patch from Werner to fix use of stack variable after it goes |
||||
out of scope (CVE-2006-6235, #218483) |
||||
|
||||
* Fri Dec 1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-9 |
||||
- rebuild |
||||
- give configure a --with-termlib option which can be used to force the |
||||
selection of libtermcap or libncurses, but don't flip the switch yet |
||||
|
||||
* Fri Dec 1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-8 |
||||
- rebuild |
||||
|
||||
* Fri Dec 1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-7 |
||||
- rebuild |
||||
|
||||
* Fri Dec 1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-6 |
||||
- add patch for overflow in openfile.c from Werner's mail |
||||
(CVE-2006-6169, #218506) |
||||
|
||||
* Tue Oct 31 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-5 |
||||
- rebuild against current libcurl |
||||
|
||||
* Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 1.4.5-4 |
||||
- rebuilt with latest binutils to pick up 64K -z commonpagesize on ppc* |
||||
(#203001) |
||||
|
||||
* Tue Aug 1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-3 |
||||
- rebuild |
||||
|
||||
* Tue Aug 1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-2 |
||||
- rebuild |
||||
- reenable curl support |
||||
|
||||
* Tue Aug 1 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.5-1 |
||||
- update to 1.4.5, fixing additional size overflows in packet parsing (#200904, |
||||
CVE-2006-3746) |
||||
- temporarily disable curl support again |
||||
|
||||
* Fri Jul 28 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4.90-1 |
||||
- update to 1.4.5rc1 to check for build problems, but mark it as 1.4.4.90 |
||||
to avoid looking "newer" than the eventual 1.4.5 |
||||
- because we call aclocal, buildrequire gettext-devel to get AM_GNU_GETTEXT |
||||
|
||||
* Thu Jul 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-7 |
||||
- add BuildPrereq on curl-devel to get curl's ipv6 support (#198375) |
||||
|
||||
* Wed Jul 12 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-6 |
||||
- fix a cast in gpgkeys_hkp to avoid tripping stack smashing or buffer overflow |
||||
detection (#198612) |
||||
|
||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.4.4-5.1 |
||||
- rebuild |
||||
|
||||
* Wed Jul 5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-5 |
||||
- try again using per-platform buildprereq (jkeating) |
||||
|
||||
* Wed Jul 5 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-4 |
||||
- buildprereq libusb-devel, so that we get CCID support back (#197450) |
||||
|
||||
* Mon Jun 26 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-3 |
||||
- rebuild |
||||
|
||||
* Mon Jun 26 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-2 |
||||
- rebuild |
||||
|
||||
* Mon Jun 26 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.4-1 |
||||
- update to 1.4.4 |
||||
|
||||
* Tue Jun 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-5 |
||||
- rebuild |
||||
|
||||
* Tue Jun 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-4 |
||||
- add patch from upstream to fix CVE-2006-3082 (#195946) |
||||
|
||||
* Tue Apr 11 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-3 |
||||
- rebuild |
||||
|
||||
* Tue Apr 11 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-2 |
||||
- apply patch from David Shaw to try multiple defaults if the the photo-viewer |
||||
option isn't set (fixes #187880) |
||||
|
||||
* Fri Mar 10 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.3-1 |
||||
- update to 1.4.3 |
||||
|
||||
* Fri Mar 10 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.2-2 |
||||
- rebuild |
||||
|
||||
* Fri Mar 10 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.2-1 |
||||
- update to 1.4.2.2 to fix detection of unsigned data (CVE-2006-0049, #185111) |
||||
|
||||
* Mon Feb 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-4 |
||||
- rebuild |
||||
|
||||
* Mon Feb 20 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-3 |
||||
- add patch from David Shaw to fix error reading keyrings created with older |
||||
versions of GnuPG (Enrico Scholz, #182163) |
||||
|
||||
* Wed Feb 15 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-2 |
||||
- rebuild |
||||
|
||||
* Wed Feb 15 2006 Nalin Dahyabhai <nalin@redhat.com> - 1.4.2.1-1 |
||||
- update to 1.4.2.1 (fixes CVE-2006-0455) |
||||
|
||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.4.2-3.2.1 |
||||
- bump again for double-long bug on ppc(64) |
||||
|
||||
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.4.2-3.2 |
||||
- rebuilt for new gcc4.1 snapshot and glibc changes |
||||
|
||||
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Tue Aug 9 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-3 |
||||
- don't override libexecdir any more; we don't need to (#165462) |
||||
|
||||
* Thu Aug 4 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-2 |
||||
- pull in David Shaw's fix for key generation in batch mode |
||||
|
||||
* Fri Jul 29 2005 Nalin Dahyabhai <nalin@redhat.com> |
||||
- change %%post to check if the info files are there before attempting to |
||||
add or remove them from the info index (#91641) |
||||
|
||||
* Wed Jul 27 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.2-1 |
||||
- update to 1.4.2 |
||||
|
||||
* Thu May 5 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-3 |
||||
- fix the execstack problem correctly this time (arjanv) |
||||
|
||||
* Thu Apr 28 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-2 |
||||
- add -Wa,--noexecstack back to CFLAGS when invoking configure, the |
||||
--enable-noexecstack flag only seems to affect asm modules |
||||
|
||||
* Wed Mar 16 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.1-1 |
||||
- update to 1.4.1 |
||||
|
||||
* Tue Mar 8 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.0-2 |
||||
- build asm modules with -Wa,--noexecstack |
||||
|
||||
* Mon Jan 24 2005 Nalin Dahyabhai <nalin@redhat.com> 1.4.0-1 |
||||
- comment out libusb-devel req for now so that we can build |
||||
- build the mpi asm modules with gcc, not a cpp/as setup so that we don't end |
||||
up with text relocations in the resulting binaries (#145836) |
||||
|
||||
* Wed Dec 22 2004 Nalin Dahyabhai <nalin@redhat.com> |
||||
- update to 1.4.0 |
||||
|
||||
* Mon Nov 1 2004 Nalin Dahyabhai <nalin@redhat.com> |
||||
- add a pile of buildprereq |
||||
|
||||
* Mon Nov 1 2004 Robert Scheck <redhat@linuxnetz.de> 1.2.6-2 |
||||
- set LANG=C before running shm coprocessing build-time check (#129873) |
||||
|
||||
* Thu Aug 26 2004 Nalin Dahyabhai <nalin@redhat.com> 1.2.6-1 |
||||
- update to 1.2.6 |
||||
|
||||
* Tue Jul 27 2004 Nalin Dahyabhai <nalin@redhat.com> |
||||
- update to 1.2.5 |
||||
- reenable optimization on ppc64 |
||||
|
||||
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Fri Feb 6 2004 Nalin Dahyabhai <nalin@redhat.com> 1.2.4-1 |
||||
- update to 1.2.4, dropping separate ElGamal disabling patch |
||||
|
||||
* Fri Dec 12 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-3 |
||||
- rebuild |
||||
|
||||
* Mon Dec 1 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-2 |
||||
- incorporate patch from gnupg-announce which removes the ability to create |
||||
ElGamal encrypt+sign keys or to sign messages with such keys |
||||
|
||||
* Mon Oct 27 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.3-1 |
||||
- use -fPIE instead of -fpie because some arches need it |
||||
|
||||
* Mon Oct 27 2003 Nalin Dahyabhai <nalin@redhat.com> |
||||
- build gnupg as a position-independent executable (Arjan van de Ven) |
||||
|
||||
* Mon Aug 25 2003 Nalin Dahyabhai <nalin@redhat.com> |
||||
- add Werner's key as a source file |
||||
|
||||
* Fri Aug 22 2003 Nalin Dahyabhai <nalin@redhat.com> |
||||
- update to 1.2.3 |
||||
|
||||
* Thu Jun 19 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-3 |
||||
- disable asm and optimization on ppc64 |
||||
|
||||
* Fri Jun 13 2003 Nalin Dahyabhai <nalin@redhat.com> |
||||
- add a build-time check to ensure that shm coprocessing was enabled |
||||
|
||||
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Mon May 5 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.2-1 |
||||
- update to 1.2.2, fixing CAN-2003-0255 |
||||
|
||||
* Thu May 1 2003 Elliot Lee <sopwith@redhat.com> 1.2.1-5 |
||||
- Add ppc64 patch to fix up global symbol names in assembly |
||||
|
||||
* Fri Feb 28 2003 Kevin Sonney <ksonney@redhat.com> 1.2.1-4 |
||||
- remove autoconf call on sparc |
||||
|
||||
* Fri Feb 7 2003 Nalin Dahyabhai <nalin@redhat.com> 1.2.1-3 |
||||
- modify g10defs to look for helpers in libexecdir, because that's where they |
||||
get installed, per gnupg-users |
||||
- actually drop updates for 1.0.7 which are no longer needed for 1.2.1 |
||||
|
||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> |
||||
- rebuilt |
||||
|
||||
* Mon Oct 28 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.1-1 |
||||
- update to 1.2.1 |
||||
|
||||
* Tue Sep 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.2.0-1 |
||||
- update to 1.2.0 |
||||
- stop stripping files manually, let the buildroot policies handle it |
||||
- add translations updates ca and fr |
||||
|
||||
* Tue Aug 27 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-6 |
||||
- rebuild |
||||
|
||||
* Wed Jul 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-5 |
||||
- specify a menu entry when installing info pages |
||||
|
||||
* Wed Jul 24 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-4 |
||||
- add and install info pages (#67931) |
||||
- don't include two copies of the faq, add new doc files (#67931) |
||||
|
||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> |
||||
- automated rebuild |
||||
|
||||
* Sun May 26 2002 Tim Powers <timp@redhat.com> |
||||
- automated rebuild |
||||
|
||||
* Tue Apr 30 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.7-1 |
||||
- update to 1.0.7 |
||||
|
||||
* Fri Feb 22 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-5 |
||||
- rebuild |
||||
|
||||
* Wed Jan 23 2002 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-4 |
||||
- make the codeset patch unconditional |
||||
|
||||
* Thu Aug 9 2001 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-3 |
||||
- set message output encoding to match the message encoding, based on a |
||||
patch by goeran@uddeborg.pp.se (#49182) |
||||
|
||||
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com> 1.0.6-2 |
||||
- Bump release + rebuild. |
||||
|
||||
* Wed May 30 2001 Nalin Dahyabhai <nalin@redhat.com> 1.0.6-1 |
||||
- update to 1.0.6, fixes format string exploit |
||||
|
||||
* Mon Apr 30 2001 Nalin Dahyabhai <nalin@redhat.com> |
||||
- update to 1.0.5, dropping various patches |
||||
|
||||
* Tue Feb 27 2001 Trond Eivind Glomsrød <teg@redhat.com> |
||||
- langify |
||||
- strip binaries in /usr/lib/gnupg |
||||
|
||||
* Tue Feb 27 2001 Nalin Dahyabhai <nalin@redhat.com> |
||||
- fix the group |
||||
|
||||
* Mon Dec 18 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- go with this version -- 1.0.4c includes a lot of changes beyond just the |
||||
two security fixes |
||||
|
||||
* Thu Dec 14 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- add the --allow-secret-key-import patch from CVS in case we don't get a 1.0.5 |
||||
|
||||
* Fri Dec 8 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- build as an errata for 7 |
||||
|
||||
* Fri Dec 1 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- add a security patch for a problem with detached signature verification... |
||||
might hold off for an impending 1.0.5, though |
||||
|
||||
* Thu Oct 19 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- fix a bug preventing creation of .gnupg directories |
||||
|
||||
* Wed Oct 18 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- add patch to recognize AES signatures properly (#19312) |
||||
- add gpgv to the package |
||||
|
||||
* Tue Oct 17 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- update to 1.0.4 to get security fix |
||||
|
||||
* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- fix man page typos (#18797) |
||||
|
||||
* Thu Sep 21 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- update to 1.0.3 |
||||
- switch to bundled copy of the man page |
||||
|
||||
* Wed Aug 30 2000 Matt Wilson <msw@redhat.com> |
||||
- rebuild to cope with glibc locale binary incompatibility, again |
||||
|
||||
* Wed Aug 16 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- revert locale patch (#16222) |
||||
|
||||
* Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- set all locale data instead of LC_MESSAGES and LC_TIME (#16222) |
||||
|
||||
* Sun Jul 23 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- update to 1.0.2 |
||||
|
||||
* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com> |
||||
- rebuild to cope with glibc locale binary incompatibility |
||||
|
||||
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com> |
||||
- automatic rebuild |
||||
|
||||
* Wed Jul 12 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- include lspgpot (#13772) |
||||
|
||||
* Mon Jun 5 2000 Nalin Dahyabhai <nalin@redhat.com> |
||||
- rebuild in new build environment |
||||
|
||||
* Fri Feb 18 2000 Bill Nottingham <notting@redhat.com> |
||||
- build of 1.0.1 |
||||
|
||||
* Fri Sep 10 1999 Cristian Gafton <gafton@redhat.com> |
||||
- version 1.0.0 build for 6.1us |
@ -0,0 +1,270 @@
@@ -0,0 +1,270 @@
|
||||
# Run optional tests |
||||
%if ! (0%{?rhel}) |
||||
%{bcond_without perl_Class_Method_Modifiers_enables_optional_test} |
||||
%else |
||||
%{bcond_with perl_Class_Method_Modifiers_enables_optional_test} |
||||
%endif |
||||
|
||||
Name: perl-Class-Method-Modifiers |
||||
Summary: Provides Moose-like method modifiers |
||||
Version: 2.13 |
||||
Release: 1%{?dist} |
||||
License: GPL+ or Artistic |
||||
URL: https://metacpan.org/release/Class-Method-Modifiers |
||||
Source0: https://cpan.metacpan.org/modules/by-module/Class/Class-Method-Modifiers-%{version}.tar.gz |
||||
BuildArch: noarch |
||||
# Module Build |
||||
BuildRequires: coreutils |
||||
BuildRequires: findutils |
||||
BuildRequires: make |
||||
BuildRequires: perl-generators |
||||
BuildRequires: perl-interpreter |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
BuildRequires: perl(strict) |
||||
BuildRequires: perl(warnings) |
||||
# Module Runtime |
||||
BuildRequires: perl(B) |
||||
BuildRequires: perl(base) |
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(Exporter) |
||||
# Test Suite |
||||
BuildRequires: perl(File::Spec) |
||||
BuildRequires: perl(if) |
||||
BuildRequires: perl(Test::Fatal) |
||||
BuildRequires: perl(Test::More) >= 0.88 |
||||
BuildRequires: perl(Test::Needs) |
||||
# Optional Test Requirements |
||||
%if 0%{!?perl_bootstrap:1} && %{with perl_Class_Method_Modifiers_enables_optional_test} |
||||
BuildRequires: perl(CPAN::Meta) >= 2.120900 |
||||
BuildRequires: perl(Moose) |
||||
%endif |
||||
# Runtime |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) |
||||
Requires: perl(B) |
||||
Requires: perl(Carp) |
||||
Requires: perl(Exporter) |
||||
|
||||
# Avoid doc-file dependencies |
||||
%{?perl_default_filter} |
||||
|
||||
%description |
||||
Method modifiers are a powerful feature from the CLOS (Common Lisp Object |
||||
System) world. |
||||
|
||||
In its most basic form, a method modifier is just a method that calls |
||||
'$self->SUPER::foo(@_)'. I for one have trouble remembering that exact |
||||
invocation, so my classes seldom re-dispatch to their base classes. Very |
||||
bad! |
||||
|
||||
'Class::Method::Modifiers' provides three modifiers: 'before', 'around', |
||||
and 'after'. 'before' and 'after' are run just before and after the method |
||||
they modify, but can not really affect that original method. 'around' is |
||||
run in place of the original method, with a hook to easily call that |
||||
original method. See the 'MODIFIERS' section for more details on how the |
||||
particular modifiers work. |
||||
|
||||
%prep |
||||
%setup -q -n Class-Method-Modifiers-%{version} |
||||
|
||||
%build |
||||
perl Makefile.PL INSTALLDIRS=vendor |
||||
make %{?_smp_mflags} |
||||
|
||||
%install |
||||
make pure_install DESTDIR=%{buildroot} |
||||
find %{buildroot} -type f -name .packlist -delete |
||||
%{_fixperms} -c %{buildroot} |
||||
|
||||
%check |
||||
make test |
||||
|
||||
%files |
||||
%license LICENSE |
||||
%doc Changes CONTRIBUTING README t/ |
||||
%{perl_vendorlib}/Class/ |
||||
%{_mandir}/man3/Class::Method::Modifiers.3* |
||||
|
||||
%changelog |
||||
* Mon Aug 12 2019 Paul Howarth <paul@city-fan.org> - 2.13-1 |
||||
- Update to 2.13 |
||||
- Bypass prototypes when testing for lvalue attribute |
||||
- Fixed a class name in tests to avoid conflicting with a core module |
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-15 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||
|
||||
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-14 |
||||
- Perl 5.30 re-rebuild of bootstrapped packages |
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-13 |
||||
- Perl 5.30 rebuild |
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-12 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-11 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-10 |
||||
- Perl 5.28 re-rebuild of bootstrapped packages |
||||
|
||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-9 |
||||
- Perl 5.28 rebuild |
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-6 |
||||
- Perl 5.26 re-rebuild of bootstrapped packages |
||||
|
||||
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-5 |
||||
- Perl 5.26 rebuild |
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-3 |
||||
- Perl 5.24 re-rebuild of bootstrapped packages |
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.12-2 |
||||
- Perl 5.24 rebuild |
||||
|
||||
* Sat Mar 05 2016 Petr Šabata <contyk@redhat.com> - 2.12-1 |
||||
- 2.12 bump, documentation fixes |
||||
- %%license is now supported in EPEL too |
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.11-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.11-5 |
||||
- Perl 5.22 re-rebuild of bootstrapped packages |
||||
|
||||
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.11-4 |
||||
- Perl 5.22 rebuild |
||||
|
||||
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.11-3 |
||||
- Perl 5.20 re-rebuild of bootstrapped packages |
||||
|
||||
* Fri Sep 05 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.11-2 |
||||
- Perl 5.20 rebuild |
||||
|
||||
* Thu Sep 4 2014 Paul Howarth <paul@city-fan.org> <paul@city-fan.org> - 2.11-1 |
||||
- Update to 2.11 |
||||
- Add documentation for modifying multiple methods at once (GitHub #2) |
||||
- Use %%license where possible |
||||
|
||||
* Fri Aug 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.10-3 |
||||
- Perl 5.20 rebuild |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Sun Mar 16 2014 Paul Howarth <paul@city-fan.org> <paul@city-fan.org> - 2.10-1 |
||||
- Update to 2.10 |
||||
- Remove erroneous perl 5.8 requirement |
||||
- Support for handling lvalue methods |
||||
- Convert to building with Dist::Zilla |
||||
- Repository migrated to the github moose organization |
||||
- Refresh configure_requires checking in generated Makefile.PL |
||||
- New CONTRIBUTING file |
||||
- Updated tests: |
||||
- Compile test now only runs for authors |
||||
- Check-deps test replaced by information-only report-prereqs test |
||||
- Drop obsoletes/provides for old tests sub-package |
||||
- Drop redundant Group tag |
||||
- Classify buildreqs by usage |
||||
- Make %%files list more explicit |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.03-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Fri Aug 02 2013 Petr Pisar <ppisar@redhat.com> - 2.03-2 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Fri Feb 15 2013 Iain Arnell <iarnell@gmail.com> 2.03-1 |
||||
- update to latest upstream version |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.00-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Sat Jan 05 2013 Iain Arnell <iarnell@gmail.com> 2.00-1 |
||||
- update to latest upstream version |
||||
|
||||
* Sun Oct 28 2012 Iain Arnell <iarnell@gmail.com> 1.12-1 |
||||
- update to latest upstream version |
||||
|
||||
* Sat Oct 27 2012 Iain Arnell <iarnell@gmail.com> 1.10-1 |
||||
- update to latest upstream version |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.09-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Fri Jun 22 2012 Petr Pisar <ppisar@redhat.com> - 1.09-2 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Tue Apr 03 2012 Iain Arnell <iarnell@gmail.com> 1.09-1 |
||||
- update to latest upstream version |
||||
|
||||
* Sun Jan 22 2012 Iain Arnell <iarnell@gmail.com> 1.08-3 |
||||
- drop tests subpackage; move tests to main package documentation |
||||
|
||||
* Tue Jan 17 2012 Iain Arnell <iarnell@gmail.com> - 1.08-2 |
||||
- rebuilt again for F17 mass rebuild |
||||
|
||||
* Fri Jan 13 2012 Iain Arnell <iarnell@gmail.com> 1.08-1 |
||||
- update to latest upstream version |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.07-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.07-2 |
||||
- Perl mass rebuild |
||||
|
||||
* Sun Mar 13 2011 Iain Arnell <iarnell@gmail.com> 1.07-1 |
||||
- update to latest upstream version |
||||
- clean up spec for modern rpmbuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.05-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.05-3 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.05-2 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Mon Mar 01 2010 Chris Weyl <cweyl@alumni.drew.edu> 1.05-1 |
||||
- update by Fedora::App::MaintainerTools 0.004 |
||||
- PERL_INSTALL_ROOT => DESTDIR |
||||
|
||||
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 1.04-2 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Fri Jul 31 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.04-1 |
||||
- auto-update to 1.04 (by cpan-spec-update 0.01) |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.02-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Mon Jun 08 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.02-1 |
||||
- auto-update to 1.02 (by cpan-spec-update 0.01) |
||||
- altered br on perl(ExtUtils::MakeMaker) (0 => 6.42) |
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.01-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild |
||||
|
||||
* Mon Sep 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-3 |
||||
- remove MM version qualifier (F-8's is older) |
||||
|
||||
* Mon Sep 08 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-2 |
||||
- bump |
||||
|
||||
* Sat Sep 06 2008 Chris Weyl <cweyl@alumni.drew.edu> 1.01-1 |
||||
- initial Fedora packaging |
||||
- generated with cpan2dist (CPANPLUS::Dist::Fedora version 0.0.1) |
@ -0,0 +1,164 @@
@@ -0,0 +1,164 @@
|
||||
Name: perl-Class-Mix |
||||
Summary: Dynamic class mixing |
||||
Version: 0.006 |
||||
Release: 7%{?dist} |
||||
License: GPL+ or Artistic |
||||
Source0: https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Class-Mix-%{version}.tar.gz |
||||
URL: https://metacpan.org/release/Class-Mix |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
BuildArch: noarch |
||||
|
||||
BuildRequires: coreutils |
||||
BuildRequires: findutils |
||||
BuildRequires: perl-generators |
||||
BuildRequires: perl-interpreter |
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(constant) |
||||
BuildRequires: perl(Exporter) |
||||
BuildRequires: perl(if) |
||||
BuildRequires: perl(Module::Build) |
||||
BuildRequires: perl(mro) |
||||
BuildRequires: perl(Params::Classify) |
||||
BuildRequires: perl(parent) |
||||
BuildRequires: perl(Test::More) |
||||
BuildRequires: perl(Test::Pod) >= 1.00 |
||||
BuildRequires: perl(Test::Pod::Coverage) |
||||
|
||||
Requires: perl(mro) |
||||
|
||||
# obsolete/provide old tests subpackage |
||||
# can be removed during F19 development cycle |
||||
Obsoletes: %{name}-tests < 0.005-3 |
||||
Provides: %{name}-tests = %{version}-%{release} |
||||
|
||||
%{?perl_default_filter} |
||||
|
||||
%description |
||||
The mix_class function provided by this module dynamically generates |
||||
'anonymous' classes with specified inheritance. |
||||
|
||||
%prep |
||||
%setup -q -n Class-Mix-%{version} |
||||
|
||||
%build |
||||
%{__perl} Build.PL installdirs=vendor |
||||
./Build |
||||
|
||||
%install |
||||
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 |
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; |
||||
%{_fixperms} $RPM_BUILD_ROOT/* |
||||
|
||||
%check |
||||
./Build test |
||||
|
||||
%files |
||||
%doc Changes README t/ |
||||
%{perl_vendorlib}/* |
||||
%{_mandir}/man3/* |
||||
|
||||
%changelog |
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.006-7 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.006-6 |
||||
- Perl 5.30 rebuild |
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.006-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.006-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.006-3 |
||||
- Perl 5.28 rebuild |
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.006-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Mon Jul 31 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.006-1 |
||||
- 0.006 bump |
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.005-17 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.005-16 |
||||
- Perl 5.26 rebuild |
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.005-15 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.005-14 |
||||
- Perl 5.24 rebuild |
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.005-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.005-12 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.005-11 |
||||
- Perl 5.22 rebuild |
||||
|
||||
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.005-10 |
||||
- Perl 5.20 rebuild |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.005-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.005-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Sun Jul 21 2013 Petr Pisar <ppisar@redhat.com> - 0.005-7 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.005-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.005-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 0.005-4 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Sun Jan 22 2012 Iain Arnell <iarnell@gmail.com> 0.005-3 |
||||
- drop tests subpackage; move tests to main package documentation |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.005-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Sat Oct 29 2011 Iain Arnell <iarnell@gmail.com> 0.005-1 |
||||
- update to latest upstream version |
||||
|
||||
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.004-3 |
||||
- Perl mass rebuild |
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.004-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Sat Nov 06 2010 Iain Arnell <iarnell@gmail.com> 0.004-1 |
||||
- update by Fedora::App::MaintainerTools 0.006 |
||||
- updating to latest GA CPAN version (0.004) |
||||
- added a new br on perl(Carp) (version 0) |
||||
- added a new br on perl(Exporter) (version 0) |
||||
- added a new br on perl(Params::Classify) (version 0) |
||||
- added a new br on perl(constant) (version 0) |
||||
- added a new br on perl(if) (version 0) |
||||
- force-adding ExtUtils::MakeMaker as a BR |
||||
- update spec for modern rpmbuild |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.003-4 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 0.003-3 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.003-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Fri May 22 2009 Iain Arnell <iarnell@gmail.com> 0.003-1 |
||||
- update to latest upstream |
||||
- add missing requires perl(Exporter) |
||||
|
||||
* Mon May 04 2009 Iain Arnell 0.002-1 |
||||
- Specfile autogenerated by cpanspec 1.77. |
@ -0,0 +1,159 @@
@@ -0,0 +1,159 @@
|
||||
Name: perl-Crypt-Eksblowfish |
||||
Version: 0.009 |
||||
Release: 26%{?dist} |
||||
Summary: Eksblowfish block cipher |
||||
License: GPL+ or Artistic |
||||
URL: https://metacpan.org/release/Crypt-Eksblowfish |
||||
Source0: https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Crypt-Eksblowfish-%{version}.tar.gz |
||||
BuildRequires: findutils |
||||
BuildRequires: gcc |
||||
BuildRequires: perl-devel |
||||
BuildRequires: perl-generators |
||||
BuildRequires: perl-interpreter |
||||
BuildRequires: perl(ExtUtils::CBuilder) >= 0.15 |
||||
BuildRequires: perl(Module::Build) |
||||
BuildRequires: perl(strict) |
||||
BuildRequires: perl(warnings) |
||||
# Run-time |
||||
BuildRequires: perl(Carp) |
||||
BuildRequires: perl(Class::Mix) >= 0.001 |
||||
BuildRequires: perl(Exporter) |
||||
BuildRequires: perl(MIME::Base64) >= 2.21 |
||||
BuildRequires: perl(parent) |
||||
BuildRequires: perl(XSLoader) |
||||
# Tests |
||||
BuildRequires: perl(Test::More) |
||||
# Optional tests |
||||
BuildRequires: perl(Encode) |
||||
BuildRequires: perl(Test::Pod) >= 1 |
||||
BuildRequires: perl(Test::Pod::Coverage) |
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%{?perl_default_filter} |
||||
|
||||
%description |
||||
An object of this type encapsulates a keyed instance of the Eksblowfish |
||||
block cipher, ready to encrypt and decrypt. |
||||
|
||||
%prep |
||||
%setup -q -n Crypt-Eksblowfish-%{version} |
||||
|
||||
%build |
||||
%{__perl} Build.PL installdirs=vendor optimize="$RPM_OPT_FLAGS" |
||||
./Build |
||||
|
||||
%install |
||||
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0 |
||||
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -delete |
||||
%{_fixperms} $RPM_BUILD_ROOT/* |
||||
|
||||
%check |
||||
./Build test |
||||
|
||||
%files |
||||
%doc Changes README |
||||
%{perl_vendorarch}/auto/* |
||||
%{perl_vendorarch}/Crypt* |
||||
%{_mandir}/man3/* |
||||
|
||||
%changelog |
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-26 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.009-25 |
||||
- Perl 5.30 rebuild |
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-24 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-23 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.009-22 |
||||
- Perl 5.28 rebuild |
||||
|
||||
* Mon Feb 19 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.009-21 |
||||
- Add build-require gcc |
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-20 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-19 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-18 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.009-17 |
||||
- Perl 5.26 rebuild |
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-16 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.009-15 |
||||
- Perl 5.24 rebuild |
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.009-14 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.009-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.009-12 |
||||
- Perl 5.22 rebuild |
||||
|
||||
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.009-11 |
||||
- Perl 5.20 rebuild |
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.009-10 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.009-9 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.009-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild |
||||
|
||||
* Sun Jul 21 2013 Petr Pisar <ppisar@redhat.com> - 0.009-7 |
||||
- Perl 5.18 rebuild |
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.009-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild |
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.009-5 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild |
||||
|
||||
* Wed Jun 13 2012 Petr Pisar <ppisar@redhat.com> - 0.009-4 |
||||
- Perl 5.16 rebuild |
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.009-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild |
||||
|
||||
* Tue Jun 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.009-2 |
||||
- Perl mass rebuild |
||||
|
||||
* Sat Apr 30 2011 Iain Arnell <iarnell@gmail.com> 0.009-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.008-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild |
||||
|
||||
* Wed Dec 15 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.008-3 |
||||
- 661697 rebuild for fixing problems with vendorach/lib |
||||
|
||||
* Fri Apr 30 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.008-2 |
||||
- Mass rebuild with perl-5.12.0 |
||||
|
||||
* Sat Mar 13 2010 Iain Arnell <iarnell@gmail.com> 0.008-1 |
||||
- update to latest upstream version |
||||
- use perl_default_filter |
||||
|
||||
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 0.007-3 |
||||
- rebuild against perl 5.10.1 |
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.007-2 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild |
||||
|
||||
* Mon May 04 2009 Iain Arnell <iarnell@gmail.com> 0.007-1 |
||||
- Specfile autogenerated by cpanspec 1.77. |
@ -0,0 +1,123 @@
@@ -0,0 +1,123 @@
|
||||
Name: perl-Data-Perl |
||||
Version: 0.002011 |
||||
Release: 1%{?dist} |
||||
Summary: Base classes wrapping fundamental Perl data types |
||||
License: GPL+ or Artistic |
||||
URL: https://metacpan.org/release/Data-Perl |
||||
Source0: https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/Data-Perl-%{version}.tar.gz |
||||
BuildArch: noarch |
||||
BuildRequires: perl-generators |
||||
BuildRequires: perl(constant) |
||||
BuildRequires: perl(Class::Method::Modifiers) |
||||
BuildRequires: perl(Exporter) |
||||
BuildRequires: perl(ExtUtils::MakeMaker) |
||||
BuildRequires: perl(List::MoreUtils) |
||||
BuildRequires: perl(List::Util) |
||||
BuildRequires: perl(Module::Runtime) |
||||
BuildRequires: perl(parent) |
||||
BuildRequires: perl(Role::Tiny) |
||||
BuildRequires: perl(Role::Tiny::With) |
||||
BuildRequires: perl(Scalar::Util) |
||||
BuildRequires: perl(strictures) |
||||
BuildRequires: perl(Test::Deep) |
||||
BuildRequires: perl(Test::Fatal) |
||||
BuildRequires: perl(Test::Output) |
||||
|
||||
# rpm's automatic deptracking misses to add this: |
||||
Requires: perl(Exporter) |
||||
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
||||
|
||||
%description |
||||
Data::Perl is a collection of classes that wrap fundamental data types |
||||
that exist in Perl. These classes and methods as they exist today are an |
||||
attempt to mirror functionality provided by Moose's Native Traits. One |
||||
important thing to note is all classes currently do no validation on |
||||
constructor input. |
||||
|
||||
%prep |
||||
%setup -q -n Data-Perl-%{version} |
||||
|
||||
%build |
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 |
||||
make %{?_smp_mflags} |
||||
|
||||
%install |
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
||||
%{_fixperms} $RPM_BUILD_ROOT/* |
||||
|
||||
%check |
||||
make test |
||||
|
||||
%files |
||||
%doc Changes README.mkdn |
||||
%license LICENSE |
||||
%{perl_vendorlib}/* |
||||
/usr/lib64/perl5/vendor_perl/auto/Data/Perl/.packlist |
||||
%{_mandir}/man3/* |
||||
|
||||
%changelog |
||||
* Fri Jan 31 2020 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.002011-1 |
||||
- Upstream update. |
||||
- Reflect Source0:-URL having changed. |
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-17 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild |
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-16 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.002009-15 |
||||
- Perl 5.30 rebuild |
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-14 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-13 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||
|
||||
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.002009-12 |
||||
- Perl 5.28 rebuild |
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-11 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-10 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||
|
||||
* Mon Jun 05 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.002009-9 |
||||
- Perl 5.26 rebuild |
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-8 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.002009-7 |
||||
- Perl 5.24 rebuild |
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.002009-6 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||
|
||||
* Thu Jan 28 2016 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.002009-5 |
||||
- Add %%license. |
||||
- Modernize spec. |
||||
|
||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.002009-4 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||
|
||||
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.002009-3 |
||||
- Perl 5.22 rebuild |
||||
|
||||
* Fri Aug 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.002009-2 |
||||
- Perl 5.20 rebuild |
||||
|
||||
* Mon Jun 30 2014 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.002009-3 |
||||
- Upstream update. |
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.002007-3 |
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||
|
||||
* Sun Mar 23 2014 Ralf Corsépius <corsepiu@fedoraproject.org> 0.002007-2 |
||||