Update to 7.05
- New upstream release 7.05: - uts46data.pl couldn't be found due to wrong naming of the file - Handle lone \015's properly in AE::Handle's default line read - Untaint IP addresses found in /etc/hosts - The memleak fix in 7.03 caused resolving via /etc/hosts always to fail on first use - Expose AnyEvent::Log::format_time, and allow users to redefine it - Expose AnyEvent::Log::default_format, and allow redefinition - Expose AnyEvent::Log::fatal_exit, to allow redefinition - AnyEvent::Debug shell can now run coro shell commands, if available - t/63* tests were wrongly in MANIFEST - kernel.org's finger server went MIA, switch to freebsd.org and icculus.org - Clarify that IO::AIO and AnyEvent::AIO are needed for AnyEvent::IO to function asynchronously - Hard-disable $^W in most tests; it generates too much garbage output - Use a (hopefully) more future-proof method to emulate common::sense - Upgrade to UTS-46:6.2.0 - Switch to INSTLIB from INSTLIBDIR, as INSTLIBDIR was wrongly documented; should not affect anything - Don't BR: perl(Event::Lib) as that back-end is not tested - BR: perl(IO::Async::Loop) for the test suite now that there's a new enough version available - BR: perl(File::Temp) for the test suite
This commit is contained in:
parent
a116dd2b45
commit
c3b973425e
@ -4,8 +4,8 @@
|
|||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
|
|
||||||
Name: perl-AnyEvent
|
Name: perl-AnyEvent
|
||||||
Version: 7.04
|
Version: 7.05
|
||||||
Release: 5%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Framework for multiple event loops
|
Summary: Framework for multiple event loops
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
@ -28,6 +28,7 @@ BuildRequires: perl(Time::HiRes)
|
|||||||
|
|
||||||
# Test suite requirements
|
# Test suite requirements
|
||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
|
BuildRequires: perl(File::Temp)
|
||||||
BuildRequires: perl(Net::SSLeay)
|
BuildRequires: perl(Net::SSLeay)
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
|
|
||||||
@ -37,16 +38,14 @@ BuildRequires: perl(Test::More)
|
|||||||
# so don't do event loop testing when bootstrapping
|
# so don't do event loop testing when bootstrapping
|
||||||
#
|
#
|
||||||
# Cocoa and FLTK are not in Fedora/EPEL
|
# Cocoa and FLTK are not in Fedora/EPEL
|
||||||
# Version of IO::Async::Loop in Fedora is too old
|
|
||||||
# TODO: BuildRequires: perl(IO::Async::Loop) >= 0.33
|
|
||||||
# Test suite does not currently test the Qt event loop
|
# Test suite does not currently test the Qt event loop
|
||||||
%if 0%{!?perl_bootstrap:1}
|
%if 0%{!?perl_bootstrap:1}
|
||||||
BuildRequires: perl(AnyEvent::AIO)
|
BuildRequires: perl(AnyEvent::AIO)
|
||||||
BuildRequires: perl(EV)
|
BuildRequires: perl(EV)
|
||||||
BuildRequires: perl(Event)
|
BuildRequires: perl(Event)
|
||||||
BuildRequires: perl(Event::Lib)
|
|
||||||
BuildRequires: perl(Glib) >= 1.210
|
BuildRequires: perl(Glib) >= 1.210
|
||||||
BuildRequires: perl(IO::AIO) >= 4.13
|
BuildRequires: perl(IO::AIO) >= 4.13
|
||||||
|
BuildRequires: perl(IO::Async::Loop) >= 0.33
|
||||||
BuildRequires: perl(POE) >= 1.312
|
BuildRequires: perl(POE) >= 1.312
|
||||||
BuildRequires: perl(Tk)
|
BuildRequires: perl(Tk)
|
||||||
%endif
|
%endif
|
||||||
@ -147,6 +146,31 @@ make test
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 21 2013 Paul Howarth <paul@city-fan.org> - 7.05-1
|
||||||
|
- Update to 7.05:
|
||||||
|
- uts46data.pl couldn't be found due to wrong naming of the file
|
||||||
|
- Handle lone \015's properly in AE::Handle's default line read
|
||||||
|
- Untaint IP addresses found in /etc/hosts
|
||||||
|
- The memleak fix in 7.03 caused resolving via /etc/hosts always to fail on
|
||||||
|
first use
|
||||||
|
- Expose AnyEvent::Log::format_time, and allow users to redefine it
|
||||||
|
- Expose AnyEvent::Log::default_format, and allow redefinition
|
||||||
|
- Expose AnyEvent::Log::fatal_exit, to allow redefinition
|
||||||
|
- AnyEvent::Debug shell can now run coro shell commands, if available
|
||||||
|
- t/63* tests were wrongly in MANIFEST
|
||||||
|
- kernel.org's finger server went MIA, switch to freebsd.org and icculus.org
|
||||||
|
- Clarify that IO::AIO and AnyEvent::AIO are needed for AnyEvent::IO to
|
||||||
|
function asynchronously
|
||||||
|
- Hard-disable $^W in most tests; it generates too much garbage output
|
||||||
|
- Use a (hopefully) more future-proof method to emulate common::sense
|
||||||
|
- Upgrade to UTS-46:6.2.0
|
||||||
|
- Switch to INSTLIB from INSTLIBDIR, as INSTLIBDIR was wrongly documented;
|
||||||
|
should not affect anything
|
||||||
|
- Don't BR: perl(Event::Lib) as that back-end is not tested
|
||||||
|
- BR: perl(IO::Async::Loop) for the test suite now that there's a new enough
|
||||||
|
version available
|
||||||
|
- BR: perl(File::Temp) for the test suite
|
||||||
|
|
||||||
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 7.04-5
|
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 7.04-5
|
||||||
- Perl 5.18 re-rebuild of bootstrapped packages
|
- Perl 5.18 re-rebuild of bootstrapped packages
|
||||||
|
|
||||||
@ -268,7 +292,7 @@ make test
|
|||||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.820-2
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.820-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
* Thu Jul 15 2009 kwizart < kwizart at gmail.com > - 4.820-1
|
* Wed Jul 15 2009 kwizart < kwizart at gmail.com > - 4.820-1
|
||||||
- Update to 4.82 (rpm version : 4.820 )
|
- Update to 4.82 (rpm version : 4.820 )
|
||||||
|
|
||||||
* Fri May 29 2009 kwizart < kwizart at gmail.com > - 4.410-1
|
* Fri May 29 2009 kwizart < kwizart at gmail.com > - 4.410-1
|
||||||
|
Loading…
Reference in New Issue
Block a user