8
0
forked from pool/perl-IPC-Run

Automatic update to v20250809.0.0 (20250809.0) #1

Open
cpanmirror wants to merge 1 commits from cpanmirror/perl-IPC-Run:autoupdate into main
4 changed files with 35 additions and 19 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb25bbdf5913d291797ef1bfe998f15130b455d3ed02aacde6856f0b25e4fe57
size 135491

BIN
IPC-Run-20250809.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Aug 28 10:29:09 UTC 2025 - Tina Müller <timueller+perl@suse.de>
- updated to 20250809.0.0 (20250809.0)
see /usr/share/doc/packages/perl-IPC-Run/Changelog
20250809.0 Sat Aug 9 2025
- Tests are good in dev version. Releasing to stable.
20250715.0_01 Tue Jul 15 2025
- #172 - Reduce delays in detecting child exit
- #174 - Add quickstart section at the top of the docs
- #177 - Retry _read() on EINTR, instead of losing pipe contents.
- In test suite, work around bug in NetBSD 10.
-------------------------------------------------------------------
Fri Mar 8 22:34:05 UTC 2024 - Tina Müller <tina.mueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-IPC-Run
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,31 +18,32 @@
%define cpan_name IPC-Run
Name: perl-IPC-Run
Version: 20231003.0.0
Version: 20250809.0.0
Release: 0
%define cpan_version 20231003.0
# 20250809.0 -> normalize -> 20250809.0.0
%define cpan_version 20250809.0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: System() and background procs w/ piping, redirs, ptys (Unix, Win32)
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/T/TO/TODDR/%{cpan_name}-%{cpan_version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/N/NJ/NJM/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(IO::Pty) >= 1.08
BuildRequires: perl(IO::Pty) >= 1.80
BuildRequires: perl(Readonly::Array)
Requires: perl(IO::Pty) >= 1.08
Provides: perl(IPC::Run) = 20231003.0.0
Provides: perl(IPC::Run::Debug) = 20231003.0.0
Provides: perl(IPC::Run::IO) = 20231003.0.0
Provides: perl(IPC::Run::Timer) = 20231003.0.0
Provides: perl(IPC::Run::Win32Helper) = 20231003.0.0
Provides: perl(IPC::Run::Win32IO) = 20231003.0.0
Provides: perl(IPC::Run::Win32Process) = 20231003.0.0
Provides: perl(IPC::Run::Win32Pump) = 20231003.0.0
Requires: perl(IO::Pty) >= 1.80
Provides: perl(IPC::Run) = %{version}
Provides: perl(IPC::Run::Debug) = %{version}
Provides: perl(IPC::Run::IO) = %{version}
Provides: perl(IPC::Run::Timer) = %{version}
Provides: perl(IPC::Run::Win32Helper) = %{version}
Provides: perl(IPC::Run::Win32IO) = %{version}
Provides: perl(IPC::Run::Win32Process) = %{version}
Provides: perl(IPC::Run::Win32Pump) = %{version}
%undefine __perllib_provides
Recommends: perl(IO::Pty) >= 1.08
Recommends: perl(IO::Pty) >= 1.80
Recommends: perl(Readonly)
%{perl_requires}
# MANUAL BEGIN
@@ -59,7 +60,7 @@ Various redirection operators reminiscent of those seen on common Unix and
DOS command lines are provided.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%autosetup -n %{cpan_name}-%{cpan_version} -p1
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
# MANUAL BEGIN