Update to 20200505.0
- New upstream release 20200505.0 - Fix syntax errors in POD examples (GH#125) - Switch Readonly testing requirement to a recommends (GH#127) - Fix full_result to always return $? (GH#129) - kill_kill: Immediately KILL the child process as documented for Win32 (GH#136) - Switch to GitHub ctions for CI testing - Re-structure shipped files into eg/ - Move author tests into xt/ and test them separately
This commit is contained in:
parent
d9b55f559a
commit
fc56213adb
@ -1,6 +1,6 @@
|
|||||||
Name: perl-IPC-Run
|
Name: perl-IPC-Run
|
||||||
Version: 20180523.0
|
Version: 20200505.0
|
||||||
Release: 7%{?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
|
||||||
@ -9,7 +9,7 @@ Summary: Perl module for interacting with child processes
|
|||||||
# lib/IPC/Run/Win32IO.pm: GPLv2 or Artistic
|
# lib/IPC/Run/Win32IO.pm: GPLv2 or Artistic
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: https://metacpan.org/release/IPC-Run
|
URL: https://metacpan.org/release/IPC-Run
|
||||||
Source0: https://cpan.metacpan.org/authors/id/T/TO/TODDR/IPC-Run-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/modules/by-module/IPC/IPC-Run-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Build
|
# Build
|
||||||
BuildRequires: coreutils
|
BuildRequires: coreutils
|
||||||
@ -34,8 +34,8 @@ BuildRequires: perl(File::Spec)
|
|||||||
BuildRequires: perl(IO::Handle)
|
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
|
|
||||||
BuildRequires: perl(Scalar::Util)
|
BuildRequires: perl(Scalar::Util)
|
||||||
|
# Socket not used on Linux
|
||||||
BuildRequires: perl(strict)
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(Symbol)
|
BuildRequires: perl(Symbol)
|
||||||
# Text::ParseWords not used on Linux
|
# Text::ParseWords not used on Linux
|
||||||
@ -43,10 +43,14 @@ 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
|
||||||
# Tests:
|
# Tests:
|
||||||
|
# B not used on Linux
|
||||||
BuildRequires: perl(Encode)
|
BuildRequires: perl(Encode)
|
||||||
|
BuildRequires: perl(File::Temp)
|
||||||
BuildRequires: perl(IO::Tty)
|
BuildRequires: perl(IO::Tty)
|
||||||
BuildRequires: perl(Test::More) >= 0.47
|
BuildRequires: perl(Test::More) >= 0.47
|
||||||
BuildRequires: perl(warnings)
|
BuildRequires: perl(warnings)
|
||||||
|
# Optional Tests
|
||||||
|
BuildRequires: perl(Readonly)
|
||||||
# Runtime
|
# Runtime
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
Requires: perl(Data::Dumper)
|
Requires: perl(Data::Dumper)
|
||||||
@ -72,7 +76,7 @@ rm -f t/win32_*
|
|||||||
sed -i -e '/^t\/win32_.*/d' MANIFEST
|
sed -i -e '/^t\/win32_.*/d' MANIFEST
|
||||||
|
|
||||||
# Fix shellbangs
|
# Fix shellbangs
|
||||||
for file in eg/run_daemon abuse/timers abuse/blocking_debug_with_sub_coprocess ; do
|
for file in eg/run_daemon eg/abuse/timers eg/abuse/blocking_debug_with_sub_coprocess ; do
|
||||||
perl -pi -e 's,^#!.*/perl,%{__perl}, if ($. == 1)' "$file"
|
perl -pi -e 's,^#!.*/perl,%{__perl}, if ($. == 1)' "$file"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -90,8 +94,7 @@ make test
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc Changes README TODO
|
%doc Changelog eg/ README.md
|
||||||
%doc abuse/ eg/
|
|
||||||
%{perl_vendorlib}/IPC/
|
%{perl_vendorlib}/IPC/
|
||||||
%{_mandir}/man3/IPC::Run.3*
|
%{_mandir}/man3/IPC::Run.3*
|
||||||
%{_mandir}/man3/IPC::Run::Debug.3*
|
%{_mandir}/man3/IPC::Run::Debug.3*
|
||||||
@ -99,6 +102,16 @@ make test
|
|||||||
%{_mandir}/man3/IPC::Run::Timer.3*
|
%{_mandir}/man3/IPC::Run::Timer.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed May 6 2020 Paul Howarth <paul@city-fan.org> - 20200505.0-1
|
||||||
|
- Update to 20200505.0
|
||||||
|
- Fix syntax errors in POD examples (GH#125)
|
||||||
|
- Switch Readonly testing requirement to a recommends (GH#127)
|
||||||
|
- Fix full_result to always return $? (GH#129)
|
||||||
|
- kill_kill: Immediately KILL the child process as documented for Win32 (GH#136)
|
||||||
|
- Switch to GitHub ctions for CI testing
|
||||||
|
- Re-structure shipped files into eg/
|
||||||
|
- Move author tests into xt/ and test them separately
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20180523.0-7
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20180523.0-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (IPC-Run-20180523.0.tar.gz) = e9d97cbec9f2607d1a89c1a06bd166ae2f030157f201e870df3b88b9f0b915b06a4b0db05b7f50daa4883de255e29c6898b1f9964d706739d4bf7034b53d7f89
|
SHA512 (IPC-Run-20200505.0.tar.gz) = 6f2e0cdbd66741a5185aa6f79c5d23189f6527e319ead385a033e482abed439a7e7fb1bbb7fa83c91c7b2971b31313a99b2b6510cc6aad3516ae6524a196d57c
|
||||||
|
Loading…
Reference in New Issue
Block a user