Update to 0.95
- New upstream release 0.95 - Enable Travis-CI integration for IPC::Run - Use q{} and qq{} to fix problems with quotation in cmd.exe - Sync $VERSION across all files to address kwalitee - Stop side effect of altering flushing of STDOUT and STDERR (CPAN RT#109243) - CHILD_HANDLE should be closed with 'Close' to prevent a warning - Require Win32API::File on Windows - Better timer error message plus an additional unit test - Catching previously non-detected malformed time strings - Let Timer accept all allowable perl numbers - Allow the OS to choose the ephemeral port to use - Don't use version.pm to parse the perl version in Makefile.PL - perltidy - Do not import POSIX into local namespace (it's a memory hog) - Skip infinity test on perl below 5.8.9 - Spelling fixes - Documentation fix: full_result returns $?, not $? >> 8 - Fix check for reaped PID in reap_nb - Re-remove unnecessary use of UNIVERSAL - Remove redundant Group: tag
This commit is contained in:
parent
f66713a569
commit
23ff83a47c
@ -1,6 +1,6 @@
|
|||||||
Name: perl-IPC-Run
|
Name: perl-IPC-Run
|
||||||
Version: 0.94
|
Version: 0.95
|
||||||
Release: 6%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Perl module for interacting with child processes
|
Summary: Perl module for interacting with child processes
|
||||||
# the rest: GPL+ or Artistic
|
# the rest: GPL+ or Artistic
|
||||||
# The Win32* modules are not part of the binary RPM package
|
# The Win32* modules are not part of the binary RPM package
|
||||||
@ -8,14 +8,17 @@ Summary: Perl module for interacting with child processes
|
|||||||
# lib/IPC/Run/Win32Pump.pm: GPLv2 or Artistic
|
# lib/IPC/Run/Win32Pump.pm: GPLv2 or Artistic
|
||||||
# lib/IPC/Run/Win32IO.pm: GPLv2 or Artistic
|
# lib/IPC/Run/Win32IO.pm: GPLv2 or Artistic
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
|
||||||
URL: http://search.cpan.org/dist/IPC-Run/
|
URL: http://search.cpan.org/dist/IPC-Run/
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IPC-Run-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IPC-Run-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Build
|
# Build
|
||||||
|
BuildRequires: coreutils
|
||||||
|
BuildRequires: findutils
|
||||||
|
BuildRequires: make
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||||
|
BuildRequires: sed
|
||||||
# IO::Pty not needed strictly for build script
|
# IO::Pty not needed strictly for build script
|
||||||
# Run-time:
|
# Run-time:
|
||||||
# base not used on Linux
|
# base not used on Linux
|
||||||
@ -32,10 +35,10 @@ BuildRequires: perl(IO::Handle)
|
|||||||
BuildRequires: perl(IO::Pty) >= 1.08
|
BuildRequires: perl(IO::Pty) >= 1.08
|
||||||
BuildRequires: perl(POSIX)
|
BuildRequires: perl(POSIX)
|
||||||
# Socket not used on Linux
|
# Socket not used on Linux
|
||||||
|
BuildRequires: perl(Scalar::Util)
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(Symbol)
|
BuildRequires: perl(Symbol)
|
||||||
# Text::ParseWords not used on Linux
|
# Text::ParseWords not used on Linux
|
||||||
BuildRequires: perl(UNIVERSAL)
|
|
||||||
BuildRequires: perl(vars)
|
BuildRequires: perl(vars)
|
||||||
# Win32::Process not used on Linux
|
# Win32::Process not used on Linux
|
||||||
# Win32API::File not used on Linux
|
# Win32API::File not used on Linux
|
||||||
@ -78,8 +81,8 @@ make %{?_smp_mflags}
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
make pure_install DESTDIR=%{buildroot}
|
make pure_install DESTDIR=%{buildroot}
|
||||||
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
find %{buildroot} -type f -name .packlist -delete
|
||||||
%{_fixperms} %{buildroot}
|
%{_fixperms} -c %{buildroot}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make test
|
||||||
@ -95,6 +98,28 @@ make test
|
|||||||
%{_mandir}/man3/IPC::Run::Timer.3*
|
%{_mandir}/man3/IPC::Run::Timer.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 25 2017 Paul Howarth <paul@city-fan.org> - 0.95-1
|
||||||
|
- Update to 0.95
|
||||||
|
- Enable Travis-CI integration for IPC::Run
|
||||||
|
- Use q{} and qq{} to fix problems with quotation in cmd.exe
|
||||||
|
- Sync $VERSION across all files to address kwalitee
|
||||||
|
- Stop side effect of altering flushing of STDOUT and STDERR (CPAN RT#109243)
|
||||||
|
- CHILD_HANDLE should be closed with 'Close' to prevent a warning
|
||||||
|
- Require Win32API::File on Windows
|
||||||
|
- Better timer error message plus an additional unit test
|
||||||
|
- Catching previously non-detected malformed time strings
|
||||||
|
- Let Timer accept all allowable perl numbers
|
||||||
|
- Allow the OS to choose the ephemeral port to use
|
||||||
|
- Don't use version.pm to parse the perl version in Makefile.PL
|
||||||
|
- perltidy
|
||||||
|
- Do not import POSIX into local namespace (it's a memory hog)
|
||||||
|
- Skip infinity test on perl below 5.8.9
|
||||||
|
- Spelling fixes
|
||||||
|
- Documentation fix: full_result returns $?, not $? >> 8
|
||||||
|
- Fix check for reaped PID in reap_nb
|
||||||
|
- Re-remove unnecessary use of UNIVERSAL
|
||||||
|
- Remove redundant Group: tag
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.94-6
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.94-6
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user