RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/perl-Mail-DKIM#097b97bf591463d79e60a2aba235e42f291f4777
This commit is contained in:
parent
6677977e4f
commit
49e165a1c8
20
.gitignore
vendored
20
.gitignore
vendored
@ -0,0 +1,20 @@
|
|||||||
|
Mail-DKIM-0.37.tar.gz
|
||||||
|
/Mail-DKIM-0.39.tar.gz
|
||||||
|
/Mail-DKIM-0.40.tar.gz
|
||||||
|
/Mail-DKIM-0.41.tar.gz
|
||||||
|
/Mail-DKIM-0.42.tar.gz
|
||||||
|
/Mail-DKIM-0.43.tar.gz
|
||||||
|
/Mail-DKIM-0.44.tar.gz
|
||||||
|
/Mail-DKIM-0.50.tar.gz
|
||||||
|
/Mail-DKIM-0.52.tar.gz
|
||||||
|
/Mail-DKIM-0.53.tar.gz
|
||||||
|
/Mail-DKIM-0.54.tar.gz
|
||||||
|
/Mail-DKIM-0.55.tar.gz
|
||||||
|
/Mail-DKIM-0.56.tar.gz
|
||||||
|
/Mail-DKIM-0.57.tar.gz
|
||||||
|
/Mail-DKIM-0.58.tar.gz
|
||||||
|
/Mail-DKIM-1.20200513.1.tar.gz
|
||||||
|
/Mail-DKIM-1.20200708.tar.gz
|
||||||
|
/Mail-DKIM-1.20200724.tar.gz
|
||||||
|
/Mail-DKIM-1.20200824.tar.gz
|
||||||
|
/Mail-DKIM-1.20200907.tar.gz
|
2
perl-Mail-DKIM.rpmlintrc
Normal file
2
perl-Mail-DKIM.rpmlintrc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
from Config import *
|
||||||
|
addFilter("spelling-error .* SpamAssassin");
|
245
perl-Mail-DKIM.spec
Normal file
245
perl-Mail-DKIM.spec
Normal file
@ -0,0 +1,245 @@
|
|||||||
|
Name: perl-Mail-DKIM
|
||||||
|
Version: 1.20200907
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Sign and verify Internet mail with DKIM/DomainKey signatures
|
||||||
|
License: GPL+ or Artistic
|
||||||
|
URL: http://dkimproxy.sourceforge.net/
|
||||||
|
Source0: https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-%{version}.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: perl-generators
|
||||||
|
BuildRequires: perl-interpreter
|
||||||
|
BuildRequires: perl(base)
|
||||||
|
BuildRequires: perl(Carp)
|
||||||
|
BuildRequires: perl(Crypt::OpenSSL::RSA) >= 0.24
|
||||||
|
BuildRequires: perl(Data::Dumper)
|
||||||
|
BuildRequires: perl(Digest::SHA)
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||||
|
BuildRequires: perl(lib)
|
||||||
|
BuildRequires: perl(Mail::Address)
|
||||||
|
BuildRequires: perl(Mail::AuthenticationResults)
|
||||||
|
BuildRequires: perl(MIME::Base64)
|
||||||
|
BuildRequires: perl(Net::DNS)
|
||||||
|
BuildRequires: perl(Net::DNS::Resolver::Mock)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(Test::RequiresInternet)
|
||||||
|
BuildRequires: perl(Test::Simple)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
BuildRequires: perl(YAML::XS)
|
||||||
|
Requires: perl(:MODULE_COMPAT_%(eval "`/usr/bin/perl -V:version`"; echo $version))
|
||||||
|
|
||||||
|
%description
|
||||||
|
This module implements the various components of the DKIM and DomainKeys
|
||||||
|
message-signing and verifying standards for Internet mail. It currently
|
||||||
|
tries to implement RFC4871 (for DKIM) and RFC4870 (DomainKeys).
|
||||||
|
|
||||||
|
It is required if you wish to enable DKIM checking in SpamAssassin via the
|
||||||
|
Mail::SpamAssassin::Plugin::DKIM plugin.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n Mail-DKIM-%{version}
|
||||||
|
# Make the example scripts non-executable
|
||||||
|
chmod -x scripts/*.pl
|
||||||
|
# Use the real path in the shebang
|
||||||
|
/usr/bin/perl -pi -e 's|^#!/usr/bin/env perl|#!/usr/bin/perl|' scripts/arcverify.pl
|
||||||
|
# Remove dos-type line endings
|
||||||
|
/usr/bin/perl -pi -e 's/\r//' doc/qp1.txt
|
||||||
|
|
||||||
|
%build
|
||||||
|
/usr/bin/perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||||
|
%{make_build}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%{make_install}
|
||||||
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||||
|
|
||||||
|
%check
|
||||||
|
%{make_build} test
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc Changes doc HACKING.DKIM README.md TODO scripts/*.pl
|
||||||
|
%license LICENSE
|
||||||
|
%{perl_vendorlib}/*
|
||||||
|
%{_mandir}/man3/*.3*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Sep 13 2020 Emmanuel Seyman <emmanuel@seyman.fr> - 1.20200907-1
|
||||||
|
- Update to 1.20200907
|
||||||
|
|
||||||
|
* Sun Aug 30 2020 Emmanuel Seyman <emmanuel@seyman.fr> - 1.20200824-1
|
||||||
|
- Update to 1.20200824
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.20200724-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 26 2020 Emmanuel Seyman <emmanuel@seyman.fr> - 1.20200724-1
|
||||||
|
- Update to 1.20200724
|
||||||
|
|
||||||
|
* Sun Jul 12 2020 Emmanuel Seyman <emmanuel@seyman.fr> - 1.20200708-1
|
||||||
|
- Update to 1.20200708
|
||||||
|
|
||||||
|
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.20200513.1-2
|
||||||
|
- Perl 5.32 rebuild
|
||||||
|
|
||||||
|
* Sun May 17 2020 Emmanuel Seyman <emmanuel@seyman.fr> - 1.20200513.1-1
|
||||||
|
- Update to 1.20200513.1
|
||||||
|
- Tage LICENSE as %%license
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.58-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Nov 17 2019 Emmanuel Seyman <emmanuel@seyman.fr> - 0.58-1
|
||||||
|
- Update to 0.58
|
||||||
|
|
||||||
|
* Sun Oct 13 2019 Emmanuel Seyman <emmanuel@seyman.fr> - 0.57-1
|
||||||
|
- Update to 0.57
|
||||||
|
- Replace calls to %/usr/bin/perl with /usr/bin/perl
|
||||||
|
|
||||||
|
* Sun Aug 25 2019 Emmanuel Seyman <emmanuel@seyman.fr> - 0.56-1
|
||||||
|
- Update to 0.56
|
||||||
|
- Replace calls to "make pure_install" with %%{make_install}
|
||||||
|
- Replace calls to "make" with %%{make_build}
|
||||||
|
- Pass NO_PERLLOCAL=1 to Makefile.PL
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.55-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.55-2
|
||||||
|
- Perl 5.30 rebuild
|
||||||
|
|
||||||
|
* Wed Apr 17 2019 Xavier Bachelot <xavier@bachelot.org> - 0.55-1
|
||||||
|
- Update to 0.55.
|
||||||
|
- Don't drop network dependent tests, build checks for internet access.
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.54-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Oct 21 2018 Emmanuel Seyman <emmanuel@seyman.fr> - 0.54-1
|
||||||
|
- Update to 0.54
|
||||||
|
- Fix shebang path in scripts/arcverify.pl
|
||||||
|
- Fix line endings in doc/qp1.txt
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.53-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.53-2
|
||||||
|
- Perl 5.28 rebuild
|
||||||
|
|
||||||
|
* Mon Jun 18 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.53-1
|
||||||
|
- 0.53 bump
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.52-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 31 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.52-1
|
||||||
|
- 0.52 bump
|
||||||
|
|
||||||
|
* Wed Jan 10 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.50-1
|
||||||
|
- 0.50 bump
|
||||||
|
|
||||||
|
* Thu Oct 19 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.44-1
|
||||||
|
- 0.44 bump
|
||||||
|
|
||||||
|
* Thu Oct 12 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.43-1
|
||||||
|
- 0.43 bump
|
||||||
|
|
||||||
|
* Fri Aug 11 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.42-1
|
||||||
|
- 0.42 bump
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.41-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 20 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.41-1
|
||||||
|
- 0.41 bump
|
||||||
|
|
||||||
|
* Tue Jun 06 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.40-11
|
||||||
|
- Perl 5.26 rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.40-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.40-9
|
||||||
|
- Perl 5.24 rebuild
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.40-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.40-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.40-6
|
||||||
|
- Perl 5.22 rebuild
|
||||||
|
|
||||||
|
* Thu Aug 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.40-5
|
||||||
|
- Perl 5.20 rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.40-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.40-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 23 2013 Petr Pisar <ppisar@redhat.com> - 0.40-2
|
||||||
|
- Perl 5.18 rebuild
|
||||||
|
|
||||||
|
* Tue May 21 2013 Nick Bebout <nb@fedoraproject.org> - 0.40-1
|
||||||
|
- Update to 0.40
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.39-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 21 2012 Petr Šabata <contyk@redhat.com> - 0.39-7
|
||||||
|
- Add missing build dependencies
|
||||||
|
- Drop command macros
|
||||||
|
|
||||||
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.39-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 15 2012 Petr Pisar <ppisar@redhat.com> - 0.39-5
|
||||||
|
- Perl 5.16 rebuild
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.39-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 0.39-3
|
||||||
|
- Perl mass rebuild
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.39-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Dec 5 2010 Nick Bebout <nb@fedoraproject.org> - 0.39-1
|
||||||
|
- Update to 0.39 to fix bug # 659003
|
||||||
|
|
||||||
|
* Mon May 03 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.37-3
|
||||||
|
- Mass rebuild with perl-5.12.0
|
||||||
|
|
||||||
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.37-2
|
||||||
|
- rebuild against perl 5.10.1
|
||||||
|
|
||||||
|
* Wed Sep 9 2009 Warren Togami <wtogami@redhat.com> - 0.37-1
|
||||||
|
- 0.37
|
||||||
|
|
||||||
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.33-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 10 2009 Kyle VanderBeek <kylev@kylev.com> - 0.33-2
|
||||||
|
- Revise network-driven testing exclusions.
|
||||||
|
|
||||||
|
* Wed Jun 10 2009 Kyle VanderBeek <kylev@kylev.com> - 0.33-1
|
||||||
|
- Update to 0.33
|
||||||
|
|
||||||
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.32-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 23 2008 Kyle VanderBeek <kylev@kylev.com> - 0.32-3
|
||||||
|
- Disable some tests that require network access and fail inside koji
|
||||||
|
|
||||||
|
* Wed Jun 18 2008 Kyle VanderBeek <kylev@kylev.com> - 0.32-2
|
||||||
|
- Make example scripts non-executable to avoid dep detection bloat.
|
||||||
|
|
||||||
|
* Tue Jun 17 2008 Kyle VanderBeek <kylev@kylev.com> - 0.32-1
|
||||||
|
- Initial version.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user