Compare commits

...

12 Commits
master ... f33

Author SHA1 Message Date
Fedora Release Engineering c03ab554db - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-07-28 13:30:49 +00:00
Jitka Plesnikova eeb14d92ea Perl 5.32 re-rebuild of bootstrapped packages 2020-06-26 16:34:45 +02:00
Jitka Plesnikova 58b86f3d7b Perl 5.32 rebuild 2020-06-23 12:34:07 +02:00
Fedora Release Engineering 6491739fe4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2020-01-29 21:23:02 +00:00
Paul Howarth 1868898cc7 Update to 7.17
- New upstream release 7.17
  - Work around antique openssl version in RHEL-7 by formatting dh parameters
    differently
  - Add t/13_weaken.t
2019-09-18 15:49:38 +01:00
Fedora Release Engineering e6f2a7b97b - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-07-26 00:28:17 +00:00
Paul Howarth 2419794a63 Update to 7.16
- New upstream release 7.16
  - Add ffdhe group dh parameters from RFC 7919, and use ffdhe3072 as new
    default, instead of schmorp1539
  - AnyEvent::Log did not re-assess logging status of AnyEvent::Log::loggers
    when contexts were changed with ->attach/detach/slaves, causing them not to
    log even though a recent attach should have caused them to log
  - Added some more logging configuration examples
  - Mention RFC 8482 in AnyEvent::DNS
- ffdhe group dh parameters require OpenSSL ≥ 1.0.2 (CPAN RT#130116)
2019-07-21 17:19:26 +01:00
Jitka Plesnikova 6b8ad455c6 Perl 5.30 re-rebuild of bootstrapped packages 2019-06-02 23:01:41 +02:00
Jitka Plesnikova 098c6127d1 Perl 5.30 rebuild 2019-05-31 07:13:34 +02:00
Paul Howarth 35b46ffc8e Update to 7.15
- New upstream release 7.15
  - INCOMPATIBLE CHANGE: AnyEvent::Handle's tls_detect documentation gave
    separate major and minor versions, while code passed only a single value;
    this version follows the documentation and now passes separate major and
    minor values
  - Work around Net::SSLeay not having been ported to openssl 1.1, but many
    distributions compiling it against openssl 1.1, which unfortunately
    succeeds and results in a very broken module
  - AnyEvent::DNS::dns_unpack now stores the original DNS packet in the __
    member, to allow decoding of undecodable resouce records containing
    compressed domain names
  - AnyEvent::Socket::parse_ipv6 would NOT, as advertised, accept ipv4
    addresses; it now does and converts them to ipv4 mapped addresses
  - Support CAA records
  - Add freenom and cloudflare nameservers as DNS fallback
  - AnyEvent::Strict would not properly ward against io watchers on files when
    the handle passed was a file descriptor
  - Document "internal" variables used by the DNS en-/decoder to allow
    enterprising users to extend them in a semi-official way
2019-02-26 11:31:26 +00:00
Fedora Release Engineering e1ba0651be - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2019-02-01 18:21:18 +00:00
Igor Gnatenko c70dea06c0 Remove obsolete Group tag
References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag
2019-01-28 20:24:25 +01:00
2 changed files with 68 additions and 7 deletions

View File

@ -7,25 +7,23 @@
%global have_weak_deps 0%{?fedora} > 20 || 0%{?rhel} > 7
Name: perl-AnyEvent
Version: 7.14
Release: 7%{?dist}
Version: 7.17
Release: 5%{?dist}
Summary: Framework for multiple event loops
Group: Development/Libraries
License: GPL+ or Artistic
URL: https://metacpan.org/release/AnyEvent
Source0: https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-%{version}%{?subver}.tar.gz
Source0: https://cpan.metacpan.org/modules/by-module/AnyEvent/AnyEvent-%{version}%{?subver}.tar.gz
# Build requirements
BuildRequires: coreutils
BuildRequires: findutils
BuildRequires: make
BuildRequires: perl-interpreter
BuildRequires: perl-generators
BuildRequires: perl-interpreter >= 3:5.8.1
BuildRequires: perl(Canary::Stability)
BuildRequires: perl(ExtUtils::MakeMaker)
# Module requirements
BuildRequires: perl-interpreter >= 3:5.8.1
BuildRequires: perl(B)
BuildRequires: perl(base)
BuildRequires: perl(Carp)
@ -146,6 +144,7 @@ make %{?_smp_mflags}
%install
make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -delete
%{_fixperms} -c %{buildroot}
%check
@ -193,6 +192,68 @@ make test
%changelog
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.17-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 7.17-4
- Perl 5.32 re-rebuild of bootstrapped packages
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 7.17-3
- Perl 5.32 rebuild
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.17-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Wed Sep 18 2019 Paul Howarth <paul@city-fan.org> - 7.17-1
- Update to 7.17
- Work around antique openssl version in RHEL-7 by formatting dh parameters
differently
- Add t/13_weaken.t
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.16-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Sun Jul 21 2019 Paul Howarth <paul@city-fan.org> - 7.16-1
- Update to 7.16
- Add ffdhe group dh parameters from RFC 7919, and use ffdhe3072 as new
default, instead of schmorp1539
- AnyEvent::Log did not re-assess logging status of AnyEvent::Log::loggers
when contexts were changed with ->attach/detach/slaves, causing them not to
log even though a recent attach should have caused them to log
- Added some more logging configuration examples
- Mention RFC 8482 in AnyEvent::DNS
- ffdhe group dh parameters require OpenSSL 1.0.2 (CPAN RT#130116)
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 7.15-3
- Perl 5.30 re-rebuild of bootstrapped packages
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 7.15-2
- Perl 5.30 rebuild
* Tue Feb 26 2019 Paul Howarth <paul@city-fan.org> - 7.15-1
- Update to 7.15
- INCOMPATIBLE CHANGE: AnyEvent::Handle's tls_detect documentation gave
separate major and minor versions, while code passed only a single value;
this version follows the documentation and now passes separate major and
minor values
- Work around Net::SSLeay not having been ported to openssl 1.1, but many
distributions compiling it against openssl 1.1, which unfortunately
succeeds and results in a very broken module
- AnyEvent::DNS::dns_unpack now stores the original DNS packet in the __
member, to allow decoding of undecodable resource records containing
compressed domain names
- AnyEvent::Socket::parse_ipv6 would NOT, as advertised, accept ipv4
addresses; it now does and converts them to ipv4 mapped addresses
- Support CAA records
- Add freenom and cloudflare nameservers as DNS fallback
- AnyEvent::Strict would not properly ward against io watchers on files when
the handle passed was a file descriptor
- Document "internal" variables used by the DNS en-/decoder to allow
enterprising users to extend them in a semi-official way
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.14-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.14-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild

View File

@ -1 +1 @@
SHA512 (AnyEvent-7.14.tar.gz) = 98e7b9e06cf74b99d3407a25b60f3b825fceed3bae43505e1fb90785e24bd88ae25955cff25d29b4cc96957db7f4f5203d19ad2365abb4e3a3227fd91a16fb25
SHA512 (AnyEvent-7.17.tar.gz) = c553cce80fa14e2f91031c569d1c30acf470871ddd1c122fa3dd36cd1ba5b7002e7ba1dea4c950d889c7c661b81042dd97975e195a5325190ad644babff81e0a