forked from pool/perl-IPC-Run
Accepting request 1116977 from devel:languages:perl:autoupdate
- Remove IPC-Run-0.89-path.diff (fixed upstream) - updated to 20231003.0 see /usr/share/doc/packages/perl-IPC-Run/Changelog 20231003.0 Windows now matches other platforms in that a child calling exit(N) causes result() to return N and full_result() to return N << 8. On Windows, before this change, result() was returning N >> 8, and full_result() was returning N. Programs having workarounds for this may need to condition those workarounds on $IPC::Run::VERSION. - #157 - On Windows, avoid hang under IPCRUNDEBUG. - Refresh "cpanfile" from Makefile.PL, to allow use on Windows. - #163 - Normalize shebangs to /usr/bin/perl - Fix or skip all tests recently seen to fail on Windows. - Include t/result.t in releases. - #168 - Make full_result() and result() Windows behavior match non-Windows. OBS-URL: https://build.opensuse.org/request/show/1116977 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-IPC-Run?expand=0&rev=45
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
--- eg/abuse/blocking_debug_with_sub_coprocess
|
||||
+++ eg/abuse/blocking_debug_with_sub_coprocess
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/opt/i386-linux/perl/bin/perl -w
|
||||
+#!/usr/bin/perl -w
|
||||
|
||||
## Submitted by Blair Zajac <blair@orcaware.com>
|
||||
|
||||
--- eg/abuse/timers
|
||||
+++ eg/abuse/timers
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/local/lib/perl -w
|
||||
+#!/usr/bin/perl -w
|
||||
|
||||
use strict;
|
||||
use IPC::Run qw( :all );
|
||||
--- eg/run_daemon
|
||||
+++ eg/run_daemon
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/local/bin/perl -w
|
||||
+#!/usr/bin/perl -w
|
||||
|
||||
## An example of how to daemonize. See the IPC::Run LIMITATIONS section for
|
||||
## some reasons why this can be a bit dangerous.
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:277d781dbbc98af18e979c7ef36f222513d7361742c52507c3348b265f6f5e69
|
||||
size 133631
|
||||
3
IPC-Run-20231003.0.tar.gz
Normal file
3
IPC-Run-20231003.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eb25bbdf5913d291797ef1bfe998f15130b455d3ed02aacde6856f0b25e4fe57
|
||||
size 135491
|
||||
@@ -4,9 +4,7 @@ description_paragraphs: 2
|
||||
#sources:
|
||||
# - source1
|
||||
# - source2
|
||||
patches:
|
||||
# PATCH-FIX-OPENSUSE -- Fix intepreter
|
||||
IPC-Run-0.89-path.diff: -p0
|
||||
#patches:
|
||||
preamble: |-
|
||||
BuildRequires: netcfg
|
||||
post_prep: |-
|
||||
|
||||
@@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 11 12:10:06 UTC 2023 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
- Remove IPC-Run-0.89-path.diff (fixed upstream)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 3 03:07:06 UTC 2023 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 20231003.0
|
||||
see /usr/share/doc/packages/perl-IPC-Run/Changelog
|
||||
|
||||
20231003.0 Mon Oct 2 2023
|
||||
Windows now matches other platforms in that a child calling exit(N) causes
|
||||
result() to return N and full_result() to return N << 8. On Windows, before
|
||||
this change, result() was returning N >> 8, and full_result() was returning N.
|
||||
Programs having workarounds for this may need to condition those workarounds on
|
||||
$IPC::Run::VERSION.
|
||||
- #157 - On Windows, avoid hang under IPCRUNDEBUG.
|
||||
- Refresh "cpanfile" from Makefile.PL, to allow use on Windows.
|
||||
- #163 - Normalize shebangs to /usr/bin/perl
|
||||
- Fix or skip all tests recently seen to fail on Windows.
|
||||
- Include t/result.t in releases.
|
||||
- #168 - Make full_result() and result() Windows behavior match non-Windows.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 23 13:31:42 UTC 2022 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-IPC-Run
|
||||
#
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,20 +18,29 @@
|
||||
|
||||
%define cpan_name IPC-Run
|
||||
Name: perl-IPC-Run
|
||||
Version: 20220807.0
|
||||
Version: 20231003.0.0
|
||||
Release: 0
|
||||
%define cpan_version 20231003.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}-%{version}.tar.gz
|
||||
Source0: https://cpan.metacpan.org/authors/id/T/TO/TODDR/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
Patch0: IPC-Run-0.89-path.diff
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(IO::Pty) >= 1.08
|
||||
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
|
||||
%define __perllib_provides /bin/true
|
||||
Recommends: perl(IO::Pty) >= 1.08
|
||||
Recommends: perl(Readonly)
|
||||
%{perl_requires}
|
||||
@@ -49,8 +58,9 @@ Various redirection operators reminiscent of those seen on common Unix and
|
||||
DOS command lines are provided.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{cpan_name}-%{version} -p0
|
||||
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||
|
||||
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||
# MANUAL BEGIN
|
||||
# run.t sometimes fails with "Resource temporarily unavailable"
|
||||
mv t/run.t t/run.tt
|
||||
|
||||
Reference in New Issue
Block a user