0e6cf4
# Because encoding sub-package has an independent version, version macro gets
0e6cf4
# redefined.
0e6cf4
%global cpan_version 3.08
0e6cf4
Name:           perl-Encode
0e6cf4
Epoch:          4
0e6cf4
Version:        %{cpan_version}
0e6cf4
# Keep increasing release number even when rebasing version because
0e6cf4
# perl-encoding sub-package has independent version which does not change
0e6cf4
# often and consecutive builds would clash on perl-encoding NEVRA. This is the
0e6cf4
# same case as in perl.spec.
0e6cf4
Release:        462%{?dist}
0e6cf4
Summary:        Character encodings in Perl
0e6cf4
# ucm:          UCD
0e6cf4
# bin/encguess: Artistic 2.0
0e6cf4
# other files:  GPL+ or Artistic
0e6cf4
License:        (GPL+ or Artistic) and Artistic 2.0 and UCD
0e6cf4
URL:            https://metacpan.org/release/Encode
0e6cf4
Source0:        https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/Encode-%{cpan_version}.tar.gz
0e6cf4
# Encode.pm does not load code from outside expected @INC (rhbz#1984005, CVE-2021-36770)
0e6cf4
Patch0:         Encode-3.08-mitigate-INC-pollution-when-loading-ConfigLocal.patch
0e6cf4
BuildRequires:  findutils
0e6cf4
BuildRequires:  gcc
0e6cf4
BuildRequires:  make
0e6cf4
BuildRequires:  perl-devel
0e6cf4
BuildRequires:  perl-generators
0e6cf4
BuildRequires:  perl-interpreter
0e6cf4
BuildRequires:  perl(Config)
0e6cf4
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
0e6cf4
BuildRequires:  perl(File::Spec)
0e6cf4
BuildRequires:  perl(File::Spec::Functions)
0e6cf4
BuildRequires:  perl(strict)
0e6cf4
BuildRequires:  perl(warnings)
0e6cf4
# enc2xs is run at build-time
0e6cf4
# Run-time:
0e6cf4
BuildRequires:  perl(bytes)
0e6cf4
BuildRequires:  perl(Carp)
0e6cf4
BuildRequires:  perl(constant)
0e6cf4
BuildRequires:  perl(Exporter) >= 5.57
0e6cf4
BuildRequires:  perl(File::Basename)
0e6cf4
BuildRequires:  perl(File::Find)
0e6cf4
BuildRequires:  perl(Filter::Util::Call)
0e6cf4
BuildRequires:  perl(Getopt::Long)
0e6cf4
BuildRequires:  perl(Getopt::Std)
0e6cf4
# I18N::Langinfo is optional
0e6cf4
BuildRequires:  perl(MIME::Base64)
0e6cf4
BuildRequires:  perl(overload)
0e6cf4
BuildRequires:  perl(parent) >= 0.221
0e6cf4
# PerlIO::encoding is optional
0e6cf4
# POSIX is optional
0e6cf4
BuildRequires:  perl(re)
0e6cf4
BuildRequires:  perl(Storable)
0e6cf4
BuildRequires:  perl(utf8)
0e6cf4
BuildRequires:  perl(vars)
0e6cf4
BuildRequires:  perl(XSLoader)
0e6cf4
# Tests:
0e6cf4
# Benchmark not used
0e6cf4
BuildRequires:  perl(blib)
0e6cf4
BuildRequires:  perl(charnames)
0e6cf4
BuildRequires:  perl(File::Compare)
0e6cf4
BuildRequires:  perl(File::Copy)
0e6cf4
BuildRequires:  perl(FileHandle)
0e6cf4
BuildRequires:  perl(FindBin)
0e6cf4
BuildRequires:  perl(IO::Select)
0e6cf4
BuildRequires:  perl(IPC::Open3)
0e6cf4
# IPC::Run not used
0e6cf4
# JSON::PP not used
0e6cf4
BuildRequires:  perl(lib)
0e6cf4
BuildRequires:  perl(open)
0e6cf4
BuildRequires:  perl(Scalar::Util)
0e6cf4
BuildRequires:  perl(Symbol)
0e6cf4
BuildRequires:  perl(Test::More)
0e6cf4
BuildRequires:  perl(Tie::Scalar)
0e6cf4
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
0e6cf4
Requires:       perl(parent) >= 0.221
0e6cf4
0e6cf4
%{?perl_default_filter}
0e6cf4
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\((Encode::ConfigLocal|MY)\\)
0e6cf4
0e6cf4
# Filter under-specified dependencies
0e6cf4
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((Exporter|parent)\\)$
0e6cf4
0e6cf4
%description
0e6cf4
The Encode module provides the interface between Perl strings and the rest
0e6cf4
of the system. Perl strings are sequences of characters.
0e6cf4
0e6cf4
%package -n perl-encoding
0e6cf4
Summary:        Write your Perl script in non-ASCII or non-UTF-8
0e6cf4
Version:        3.00
0e6cf4
License:        GPL+ or Artistic
0e6cf4
# Keeping this sub-package arch-specific because it installs files into
0e6cf4
# arch-specific directories.
0e6cf4
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
0e6cf4
Requires:       perl(Carp)
0e6cf4
# Config not needed on perl ≥ 5.008
0e6cf4
# Consider Filter::Util::Call as mandatory, bug #1165183, CPAN RT#100427
0e6cf4
Requires:       perl(Filter::Util::Call)
0e6cf4
# I18N::Langinfo is optional
0e6cf4
Suggests:       perl(PerlIO::encoding)
0e6cf4
Requires:       perl(utf8)
0e6cf4
Conflicts:      perl-Encode < 2:2.64-2
0e6cf4
0e6cf4
%description -n perl-encoding
0e6cf4
With the encoding pragma, you can write your Perl script in any encoding you
0e6cf4
like (so long as the Encode module supports it) and still enjoy Unicode
0e6cf4
support.
0e6cf4
0e6cf4
However, this encoding module is deprecated under perl 5.18. It uses
0e6cf4
a mechanism provided by perl that is deprecated under 5.18 and higher, and may
0e6cf4
be removed in a future version.
0e6cf4
0e6cf4
The easiest and the best alternative is to write your script in UTF-8.
0e6cf4
0e6cf4
# To mirror files from perl-devel (bug #456534)
0e6cf4
# Keep architecture specific because files go into vendorarch
0e6cf4
%package devel
0e6cf4
Summary:        Perl Encode Module Generator
0e6cf4
Version:        %{cpan_version}
0e6cf4
License:        (GPL+ or Artistic) and UCD
0e6cf4
Requires:       %{name}%{?_isa} = %{epoch}:%{cpan_version}-%{release}
0e6cf4
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
0e6cf4
Recommends:     perl-devel%{?_isa}
0e6cf4
Requires:       perl(Encode)
0e6cf4
0e6cf4
%description devel
0e6cf4
enc2xs builds a Perl extension for use by Encode from either Unicode Character
0e6cf4
Mapping files (.ucm) or Tcl Encoding Files (.enc). You can use enc2xs to add
0e6cf4
your own encoding to perl. No knowledge of XS is necessary.
0e6cf4
0e6cf4
0e6cf4
%prep
0e6cf4
%setup -q -n Encode-%{cpan_version}
0e6cf4
%patch0 -p1
0e6cf4
0e6cf4
%build
0e6cf4
# Additional scripts can be installed by appending MORE_SCRIPTS, UCM files by
0e6cf4
# INSTALL_UCM.
0e6cf4
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 \
0e6cf4
    OPTIMIZE="$RPM_OPT_FLAGS"
0e6cf4
%{make_build}
0e6cf4
0e6cf4
%install
0e6cf4
%{make_install}
0e6cf4
find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -delete
0e6cf4
%{_fixperms} $RPM_BUILD_ROOT/*
0e6cf4
0e6cf4
%check
0e6cf4
unset AUTHOR_TESTING ENC2XS_NO_COMMENTS ENC2XS_VERBOSE MAKEFLAGS PERL_CORE \
0e6cf4
    PERL_ENCODING PERL_ENCODE_DEBUG
0e6cf4
make test
0e6cf4
0e6cf4
%files
0e6cf4
%doc AUTHORS Changes README
0e6cf4
%{_bindir}/encguess
0e6cf4
%{_bindir}/piconv
0e6cf4
%{perl_vendorarch}/auto/*
0e6cf4
%{perl_vendorarch}/Encode*
0e6cf4
%exclude %{perl_vendorarch}/Encode/*.e2x
0e6cf4
%exclude %{perl_vendorarch}/Encode/encode.h
0e6cf4
%{_mandir}/man1/encguess.*
0e6cf4
%{_mandir}/man1/piconv.*
0e6cf4
%{_mandir}/man3/Encode.*
0e6cf4
%{_mandir}/man3/Encode::*
0e6cf4
0e6cf4
%files -n perl-encoding
0e6cf4
%doc AUTHORS Changes README
0e6cf4
%{perl_vendorarch}/encoding.pm
0e6cf4
%{_mandir}/man3/encoding.*
0e6cf4
0e6cf4
%files devel
0e6cf4
%{_bindir}/enc2xs
0e6cf4
%{_mandir}/man1/enc2xs.*
0e6cf4
%{perl_vendorarch}/Encode/*.e2x
0e6cf4
%{perl_vendorarch}/Encode/encode.h
0e6cf4
0e6cf4
%changelog
0e6cf4
* Tue Aug 10 2021 Jitka Plesnikova <jplesnik@redhat.com> - 4:3.08-462
0e6cf4
- Resolves: rhbz#1984005, CVE-2021-36770 - mitigate @INC pollution when
0e6cf4
  loading ConfigLocal
0e6cf4
0e6cf4
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4:3.08-461
0e6cf4
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
0e6cf4
  Related: rhbz#1991688
0e6cf4
0e6cf4
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 4:3.08-460
0e6cf4
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
0e6cf4
0e6cf4
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4:3.08-459
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
0e6cf4
0e6cf4
* Wed Dec 02 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4:3.08-458
0e6cf4
- 3.08 bump
0e6cf4
0e6cf4
* Mon Jul 27 2020 Petr Pisar <ppisar@redhat.com> - 4:3.07-457
0e6cf4
- 3.07 bump
0e6cf4
0e6cf4
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4:3.06-456
0e6cf4
- Increase release to favour standalone package
0e6cf4
0e6cf4
* Mon May 04 2020 Petr Pisar <ppisar@redhat.com> - 4:3.06-445
0e6cf4
- 3.06 bump
0e6cf4
0e6cf4
* Thu Mar 19 2020 Petr Pisar <ppisar@redhat.com> - 4:3.05-444
0e6cf4
- 3.05 bump
0e6cf4
0e6cf4
* Wed Mar 11 2020 Petr Pisar <ppisar@redhat.com> - 4:3.04-443
0e6cf4
- 3.04 bump
0e6cf4
0e6cf4
* Mon Mar 02 2020 Petr Pisar <ppisar@redhat.com> - 4:3.03-442
0e6cf4
- 3.03 bump
0e6cf4
0e6cf4
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4:3.02-441
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
0e6cf4
0e6cf4
* Thu Jan 02 2020 Petr Pisar <ppisar@redhat.com> - 4:3.02-440
0e6cf4
- 3.02 bump
0e6cf4
0e6cf4
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4:3.01-439
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
0e6cf4
0e6cf4
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4:3.01-438
0e6cf4
- Increase release to favour standalone package
0e6cf4
0e6cf4
* Wed Mar 13 2019 Petr Pisar <ppisar@redhat.com> - 4:3.01-10
0e6cf4
- 3.01 bump
0e6cf4
0e6cf4
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4:3.00-9
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
0e6cf4
0e6cf4
* Thu Jan 31 2019 Petr Pisar <ppisar@redhat.com> - 4:3.00-8
0e6cf4
- 3.00 bump
0e6cf4
0e6cf4
* Mon Jan 21 2019 Petr Pisar <ppisar@redhat.com> - 4:2.99-7
0e6cf4
- 2.99 bump
0e6cf4
0e6cf4
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4:2.98-6
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
0e6cf4
0e6cf4
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 4:2.98-5
0e6cf4
- Perl 5.28 rebuild
0e6cf4
0e6cf4
* Mon Apr 23 2018 Petr Pisar <ppisar@redhat.com> - 4:2.98-4
0e6cf4
- 2.98 bump
0e6cf4
0e6cf4
* Wed Feb 21 2018 Petr Pisar <ppisar@redhat.com> - 4:2.97-3
0e6cf4
- 2.97 bump
0e6cf4
0e6cf4
* Mon Feb 19 2018 Petr Pisar <ppisar@redhat.com> - 4:2.96-2
0e6cf4
- Preserve a warning on Perl 5.26.1 (bug #1544345)
0e6cf4
0e6cf4
* Mon Feb 12 2018 Petr Pisar <ppisar@redhat.com> - 4:2.96-1
0e6cf4
- 2.96 bump
0e6cf4
0e6cf4
* Thu Feb 08 2018 Petr Pisar <ppisar@redhat.com> - 4:2.95-1
0e6cf4
- 2.95 bump
0e6cf4
0e6cf4
* Tue Jan 09 2018 Petr Pisar <ppisar@redhat.com> - 4:2.94-16
0e6cf4
- 2.94 bump
0e6cf4
0e6cf4
* Mon Oct 09 2017 Petr Pisar <ppisar@redhat.com> - 4:2.93-15
0e6cf4
- 2.93 bump
0e6cf4
0e6cf4
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4:2.92-14
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
0e6cf4
0e6cf4
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4:2.92-13
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0e6cf4
0e6cf4
* Wed Jul 19 2017 Petr Pisar <ppisar@redhat.com> - 4:2.92-12
0e6cf4
- 2.92 bump
0e6cf4
0e6cf4
* Thu Jun 22 2017 Petr Pisar <ppisar@redhat.com> - 4:2.91-11
0e6cf4
- 2.91 bump
0e6cf4
0e6cf4
* Thu Jun 22 2017 Petr Pisar <ppisar@redhat.com> - 4:2.90-10
0e6cf4
- Fix "use parent q{Encode::Encoding}" (CPAN RT#122167)
0e6cf4
0e6cf4
* Mon Jun 12 2017 Petr Pisar <ppisar@redhat.com> - 4:2.90-9
0e6cf4
- 2.90 bump
0e6cf4
0e6cf4
* Sat Jun 03 2017 Jitka Plesnikova <jplesnik@redhat.com> - 4:2.89-8
0e6cf4
- Perl 5.26 rebuild
0e6cf4
0e6cf4
* Fri Apr 21 2017 Petr Pisar <ppisar@redhat.com> - 4:2.89-7
0e6cf4
- 2.89 bump
0e6cf4
0e6cf4
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4:2.88-6
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
0e6cf4
0e6cf4
* Wed Nov 30 2016 Petr Pisar <ppisar@redhat.com> - 4:2.88-5
0e6cf4
- 2.88 bump
0e6cf4
0e6cf4
* Mon Oct 31 2016 Petr Pisar <ppisar@redhat.com> - 4:2.87-4
0e6cf4
- 2.87 bump
0e6cf4
0e6cf4
* Fri Sep 30 2016 Petr Pisar <ppisar@redhat.com> - 4:2.86-3
0e6cf4
- Fix Encode::encode_utf8(undef) to return undef (CPAN RT#116904)
0e6cf4
- Refuse non-shortests UTF-8 representations in strict mode
0e6cf4
- Fix panic when encoding undefined scalars
0e6cf4
0e6cf4
* Fri Sep 16 2016 Petr Pisar <ppisar@redhat.com> - 4:2.86-2
0e6cf4
- Add Artistic 2.0 into license tag because of encguess tool
0e6cf4
0e6cf4
* Thu Aug 11 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4:2.86-1
0e6cf4
- 2.86 bump
0e6cf4
0e6cf4
* Tue Aug 09 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4:2.85-1
0e6cf4
- 2.85 bump
0e6cf4
0e6cf4
* Tue Aug 02 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4:2.84-11
0e6cf4
- Avoid loading optional modules from default . (CVE-2016-1238)
0e6cf4
0e6cf4
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 4:2.84-10
0e6cf4
- Increase epoch to favour standalone package
0e6cf4
0e6cf4
* Mon Apr 18 2016 Petr Pisar <ppisar@redhat.com> - 3:2.84-9
0e6cf4
- Weak perl-Encode-devel dependency on perl-devel to Recommends level
0e6cf4
  (bug #1129443)
0e6cf4
0e6cf4
* Mon Apr 11 2016 Petr Pisar <ppisar@redhat.com> - 3:2.84-8
0e6cf4
- 2.84 bump
0e6cf4
0e6cf4
* Thu Mar 24 2016 Petr Pisar <ppisar@redhat.com> - 3:2.83-7
0e6cf4
- 2.83 bump
0e6cf4
0e6cf4
* Tue Feb 09 2016 Petr Pisar <ppisar@redhat.com> - 3:2.82-6
0e6cf4
- 2.82 bump
0e6cf4
0e6cf4
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3:2.80-5
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0e6cf4
0e6cf4
* Mon Jan 25 2016 Petr Pisar <ppisar@redhat.com> - 3:2.80-4
0e6cf4
- 2.80 bump
0e6cf4
0e6cf4
* Fri Jan 22 2016 Petr Pisar <ppisar@redhat.com> - 3:2.79-3
0e6cf4
- 2.79 bump
0e6cf4
0e6cf4
* Thu Sep 24 2015 Petr Pisar <ppisar@redhat.com> - 3:2.78-2
0e6cf4
- 2.78 bump
0e6cf4
0e6cf4
* Wed Sep 16 2015 Petr Pisar <ppisar@redhat.com> - 3:2.77-1
0e6cf4
- 2.77 bump
0e6cf4
0e6cf4
* Fri Jul 31 2015 Petr Pisar <ppisar@redhat.com> - 3:2.76-2
0e6cf4
- Increase release number to have unique perl-encoding NEVRA
0e6cf4
0e6cf4
* Fri Jul 31 2015 Petr Pisar <ppisar@redhat.com> - 3:2.76-1
0e6cf4
- 2.76 bump
0e6cf4
0e6cf4
* Wed Jul 01 2015 Petr Pisar <ppisar@redhat.com> - 3:2.75-1
0e6cf4
- 2.75 bump
0e6cf4
0e6cf4
* Thu Jun 25 2015 Petr Pisar <ppisar@redhat.com> - 3:2.74-1
0e6cf4
- 2.74 bump
0e6cf4
0e6cf4
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3:2.73-3
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0e6cf4
0e6cf4
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2:2.73-2
0e6cf4
- Perl 5.22 rebuild
0e6cf4
- Increase Epoch to favour standalone package
0e6cf4
0e6cf4
* Mon Apr 20 2015 Petr Pisar <ppisar@redhat.com> - 2:2.73-1
0e6cf4
- 2.73 bump
0e6cf4
0e6cf4
* Mon Mar 16 2015 Petr Pisar <ppisar@redhat.com> - 2:2.72-1
0e6cf4
- 2.72 bump
0e6cf4
0e6cf4
* Thu Mar 12 2015 Petr Pisar <ppisar@redhat.com> - 2:2.71-1
0e6cf4
- 2.71 bump
0e6cf4
0e6cf4
* Wed Mar 04 2015 Petr Pisar <ppisar@redhat.com> - 2:2.70-2
0e6cf4
- Correct license from (GPL+ or Artistic) to ((GPL+ or Artistic) and UCD)
0e6cf4
0e6cf4
* Thu Feb 05 2015 Petr Pisar <ppisar@redhat.com> - 2:2.70-1
0e6cf4
- 2.70 bump
0e6cf4
0e6cf4
* Fri Jan 23 2015 Petr Pisar <ppisar@redhat.com> - 2:2.68-1
0e6cf4
- 2.68 bump
0e6cf4
0e6cf4
* Fri Dec 05 2014 Petr Pisar <ppisar@redhat.com> - 2:2.67-1
0e6cf4
- 2.67 bump
0e6cf4
0e6cf4
* Wed Dec 03 2014 Petr Pisar <ppisar@redhat.com> - 2:2.66-1
0e6cf4
- 2.66 bump
0e6cf4
0e6cf4
* Tue Nov 18 2014 Petr Pisar <ppisar@redhat.com> - 2:2.64-2
0e6cf4
- Consider Filter::Util::Call dependency as mandatory (bug #1165183)
0e6cf4
- Sub-package encoding module
0e6cf4
0e6cf4
* Mon Nov 03 2014 Petr Pisar <ppisar@redhat.com> - 2:2.64-1
0e6cf4
- 2.64 bump
0e6cf4
0e6cf4
* Mon Oct 20 2014 Petr Pisar <ppisar@redhat.com> - 2:2.63-1
0e6cf4
- 2.63 bump
0e6cf4
0e6cf4
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2:2.62-5
0e6cf4
- Increase Epoch to favour standalone package
0e6cf4
0e6cf4
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1:2.62-4
0e6cf4
- Perl 5.20 rebuild
0e6cf4
0e6cf4
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.62-3
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
0e6cf4
0e6cf4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.62-2
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0e6cf4
0e6cf4
* Mon Jun 02 2014 Petr Pisar <ppisar@redhat.com> - 1:2.62-1
0e6cf4
- 2.62 bump
0e6cf4
0e6cf4
* Wed Apr 30 2014 Petr Pisar <ppisar@redhat.com> - 1:2.60-1
0e6cf4
- 2.60 bump
0e6cf4
0e6cf4
* Mon Apr 14 2014 Petr Pisar <ppisar@redhat.com> - 1:2.59-1
0e6cf4
- 2.59 bump
0e6cf4
0e6cf4
* Mon Mar 31 2014 Petr Pisar <ppisar@redhat.com> - 1:2.58-1
0e6cf4
- 2.58 bump
0e6cf4
0e6cf4
* Fri Jan 03 2014 Petr Pisar <ppisar@redhat.com> - 1:2.57-1
0e6cf4
- 2.57 bump
0e6cf4
0e6cf4
* Mon Sep 16 2013 Petr Pisar <ppisar@redhat.com> - 1:2.55-1
0e6cf4
- 2.55 bump
0e6cf4
0e6cf4
* Mon Sep 02 2013 Petr Pisar <ppisar@redhat.com> - 1:2.54-1
0e6cf4
- 2.54 bump
0e6cf4
0e6cf4
* Wed Aug 21 2013 Jitka Plesnikova <jplesnik@redhat.com> - 1:2.52-1
0e6cf4
- 2.52 bump
0e6cf4
0e6cf4
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:2.51-7
0e6cf4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0e6cf4
0e6cf4
* Fri Jul 26 2013 Petr Pisar <ppisar@redhat.com> - 1:2.51-6
0e6cf4
- Specify more dependencies
0e6cf4
0e6cf4
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1:2.51-5
0e6cf4
- Put epoch into dependecny declaration
0e6cf4
0e6cf4
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 1:2.51-4
0e6cf4
- Link minimal build-root packages against libperl.so explicitly
0e6cf4
0e6cf4
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 1:2.51-3
0e6cf4
- Perl 5.18 rebuild
0e6cf4
0e6cf4
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 1:2.51-2
0e6cf4
- Perl 5.18 rebuild
0e6cf4
0e6cf4
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 1:2.51-1
0e6cf4
- Increase epoch to compete with perl.spec
0e6cf4
0e6cf4
* Fri May 17 2013 Petr Pisar <ppisar@redhat.com> - 2.51-2
0e6cf4
- Specify all dependencies
0e6cf4
0e6cf4
* Thu May 02 2013 Petr Pisar <ppisar@redhat.com> - 2.51-1
0e6cf4
- 2.51 bump
0e6cf4
0e6cf4
* Mon Apr 29 2013 Petr Pisar <ppisar@redhat.com> - 2.50-1
0e6cf4
- 2.50 bump (recoding does not launders taintedness)
0e6cf4
0e6cf4
* Tue Mar 05 2013 Petr Pisar <ppisar@redhat.com> - 2.49-1
0e6cf4
- 2.49 bump
0e6cf4
0e6cf4
* Mon Feb 18 2013 Petr Pisar <ppisar@redhat.com> - 2.48-1
0e6cf4
- 2.48 bump
0e6cf4
0e6cf4
* Thu Sep 20 2012 Petr Pisar <ppisar@redhat.com> 2.47-1
0e6cf4
- Specfile autogenerated by cpanspec 1.78.
0e6cf4
- Make devel sub-package architecture specific due to file location