Accepting request 1153838 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1153838 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-IPC-Run3?expand=0&rev=21
This commit is contained in:
commit
53139cc6f5
BIN
IPC-Run3-0.048.tar.gz
(Stored with Git LFS)
BIN
IPC-Run3-0.048.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
IPC-Run3-0.049.tar.gz
Normal file
3
IPC-Run3-0.049.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9d048ae7b9ae63871bae976ba01e081d887392d904e5d48b04e22d35ed22011a
|
||||||
|
size 20660
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 21 03:08:58 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.049
|
||||||
|
see /usr/share/doc/packages/perl-IPC-Run3/Changes
|
||||||
|
|
||||||
|
0.049 2024-01-20
|
||||||
|
- avoid some uninitialized warnings in ProfLogReader
|
||||||
|
- improve errno handling on Windows (thanks, Graham Ollis)
|
||||||
|
- avoid leaking fds (thanks, Dan Book)
|
||||||
|
- fix typos in docs (thanks, Yoshikazu Sawa and Jakub Wilk)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 14 21:16:28 UTC 2015 - coolo@suse.com
|
Tue Apr 14 21:16:28 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-IPC-Run3
|
# spec file for package perl-IPC-Run3
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -12,25 +12,31 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-IPC-Run3
|
|
||||||
Version: 0.048
|
|
||||||
Release: 0
|
|
||||||
#Upstream: SUSE-Public-Domain
|
|
||||||
%define cpan_name IPC-Run3
|
%define cpan_name IPC-Run3
|
||||||
Summary: Run a Subprocess with Input/Ouput Redirection
|
Name: perl-IPC-Run3
|
||||||
License: BSD-2-Clause or GPL-2.0+ or Artistic-1.0
|
Version: 0.49.0
|
||||||
Group: Development/Libraries/Perl
|
Release: 0
|
||||||
Url: http://search.cpan.org/dist/IPC-Run3/
|
%define cpan_version 0.049
|
||||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
#Upstream: SUSE-Public-Domain
|
||||||
|
License: Artistic-1.0 OR BSD-2-Clause OR GPL-2.0-or-later
|
||||||
|
Summary: Run a subprocess with input/output redirection
|
||||||
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
|
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{cpan_version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
Provides: perl(IPC::Run3) = %{version}
|
||||||
|
Provides: perl(IPC::Run3::ProfArrayBuffer) = %{version}
|
||||||
|
Provides: perl(IPC::Run3::ProfLogReader) = %{version}
|
||||||
|
Provides: perl(IPC::Run3::ProfLogger) = %{version}
|
||||||
|
Provides: perl(IPC::Run3::ProfPP) = %{version}
|
||||||
|
Provides: perl(IPC::Run3::ProfReporter) = %{version}
|
||||||
|
%define __perllib_provides /bin/true
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -44,14 +50,14 @@ code; which is often much slower than the kind of buffered I/O that this
|
|||||||
module uses to spool input to and output from the child command.)
|
module uses to spool input to and output from the child command.)
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@ -59,7 +65,7 @@ module uses to spool input to and output from the child command.)
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%doc Changes README
|
||||||
%doc Changes LICENSE README
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user