forked from perl/perl-IPC-Run
Accepting request 592489 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/592489 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-IPC-Run?expand=0&rev=36
This commit is contained in:
committed by
Git OBS Bridge
parent
e56dcd3c84
commit
db952a5ca2
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:70107fd66ad363e0c8fc7baacc1fa22a4a6169d2c447a9495f625b778c149d84
|
|
||||||
size 122839
|
|
3
IPC-Run-0.98.tar.gz
Normal file
3
IPC-Run-0.98.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f46a3104455a06619f39a8a788c3688213a7e21f60a2379ab7aa018896341905
|
||||||
|
size 147139
|
@@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 30 05:28:37 UTC 2018 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.98
|
||||||
|
see /usr/share/doc/packages/perl-IPC-Run/Changes
|
||||||
|
|
||||||
|
0.98 Thu Mar 29 2018
|
||||||
|
- Switch to using $!{EINTR}
|
||||||
|
- Honor umask for user/group permissions on a +rw file
|
||||||
|
- Remove commented code from RT 50739
|
||||||
|
- #63 - Patch for fixing _write on invalid objects
|
||||||
|
- #54 - Make slave the controlling terminal so more programs can be called from IPC::Run reliably
|
||||||
|
- #53 - Prevent Not a GLOB reference in close_terminal by untieing before close
|
||||||
|
- #46 - '&' closing the stdin of the right process.
|
||||||
|
- #41 - Do POSIX::_exit not ::exit
|
||||||
|
- #40 - Assure child Win32 processes have same priority as parent
|
||||||
|
- #38 - Add unit test for passing use of Readonly.pm
|
||||||
|
- #39 - Fix GLOB test in IPC::Run::IO->new
|
||||||
|
- #86 - Fix for memory leak [rt.cpan.org #57990]
|
||||||
|
- MANIFEST was updated. New tests may start shipping now.
|
||||||
|
|
||||||
|
0.97 Mon Mar 26 2018
|
||||||
|
- Update meta and POD to point to GitHub issues not RT.
|
||||||
|
- Update README with pod changes.
|
||||||
|
- Fix variable name in synopsis - [Github #47]
|
||||||
|
- Fix t/run.t to work on "perl in space" - [Github #100]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 28 14:35:32 UTC 2018 - pmonrealgonzalez@suse.com
|
Wed Mar 28 14:35:32 UTC 2018 - pmonrealgonzalez@suse.com
|
||||||
|
|
||||||
|
@@ -16,10 +16,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define cpan_name IPC-Run
|
|
||||||
Name: perl-IPC-Run
|
Name: perl-IPC-Run
|
||||||
Version: 0.97
|
Version: 0.98
|
||||||
Release: 0
|
Release: 0
|
||||||
|
%define cpan_name IPC-Run
|
||||||
Summary: System() and Background Procs W/ Piping, Redirs, Ptys (Unix, Win32)
|
Summary: System() and Background Procs W/ Piping, Redirs, Ptys (Unix, Win32)
|
||||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
@@ -27,12 +27,15 @@ Url: http://search.cpan.org/dist/IPC-Run/
|
|||||||
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}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
Patch0: IPC-Run-0.89-path.diff
|
Patch0: IPC-Run-0.89-path.diff
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(IO::Pty) >= 1.08
|
BuildRequires: perl(IO::Pty) >= 1.08
|
||||||
|
BuildRequires: perl(Readonly)
|
||||||
|
BuildRequires: perl(Readonly::Array)
|
||||||
Requires: perl(IO::Pty) >= 1.08
|
Requires: perl(IO::Pty) >= 1.08
|
||||||
Recommends: perl(IO::Pty) >= 1.08
|
Recommends: perl(IO::Pty) >= 1.08
|
||||||
BuildArch: noarch
|
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
# MANUAL BEGIN
|
# MANUAL BEGIN
|
||||||
BuildRequires: netcfg
|
BuildRequires: netcfg
|
||||||
@@ -56,11 +59,11 @@ mv t/run.t t/run.tt
|
|||||||
# MANUAL END
|
# MANUAL END
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
make %{?_smp_mflags}
|
%{__make} %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make %{?_smp_mflags} test
|
%{__make} test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@@ -69,7 +72,7 @@ make %{?_smp_mflags} test
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes README TODO
|
%doc Changes README README.md TODO
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user