Update to 1.13

- New upstream release 1.13:
  - Fix handling of outbuf that contains '0' (CPAN RT#67458)
- Nobody else likes macros for commands
This commit is contained in:
Paul Howarth 2011-04-15 10:30:13 +01:00
parent 35446dd53f
commit 6cf54b3219
3 changed files with 19 additions and 14 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
/IO-Multiplex-1.12.tar.gz
/IO-Multiplex-1.13.tar.gz

View File

@ -1,15 +1,15 @@
Summary: Manage IO on many file handles
Name: perl-IO-Multiplex
Version: 1.12
Version: 1.13
Release: 1%{?dist}
License: GPL+ or Artistic
Group: Development/Libraries
URL: http://search.cpan.org/dist/IO-Multiplex/
Source0: http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/IO-Multiplex-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
BuildArch: noarch
BuildRequires: perl(ExtUtils::MakeMaker)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
%description
IO::Multiplex is designed to take the effort out of managing multiple file
@ -22,21 +22,21 @@ more listen sockets.
%setup -q -n IO-Multiplex-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%{__make} pure_install PERL_INSTALL_ROOT=%{buildroot}
/usr/bin/find %{buildroot} -type f -name .packlist -exec %{__rm} -f {} ';'
/usr/bin/find %{buildroot} -depth -type d -exec /bin/rmdir {} ';' 2>/dev/null
rm -rf %{buildroot}
make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
find %{buildroot} -depth -type d -exec rmdir {} ';' 2>/dev/null
%{_fixperms} %{buildroot}
%check
%{__make} test
make test
%clean
%{__rm} -rf %{buildroot}
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
@ -45,7 +45,12 @@ more listen sockets.
%{_mandir}/man3/IO::Multiplex.3pm*
%changelog
* Thu Feb 24 2011 Paul Howarth <paul@city-fan.org> 1.12-1
* Fri Apr 15 2011 Paul Howarth <paul@city-fan.org> - 1.13-1
- Update to 1.13
- Fix handling of outbuf that contains '0' (CPAN RT#67458)
- Nobody else likes macros for commands
* Thu Feb 24 2011 Paul Howarth <paul@city-fan.org> - 1.12-1
- Update to 1.12
- Fixes for Windows (CPAN RT#66096)

View File

@ -1 +1 @@
6cbb8d2a6834769bd64031100edcbcec IO-Multiplex-1.12.tar.gz
a74f4c07a543cbf06ba3b24fe1be94e9 IO-Multiplex-1.13.tar.gz