Accepting request 958016 from devel:languages:perl:autoupdate

- updated to 0.100
   see /usr/share/doc/packages/perl-Parallel-Pipes/Changes
  0.100  2022-02-27 16:42:57 JST
      - Introduce Parallel::Pipes::App class (#4)

OBS-URL: https://build.opensuse.org/request/show/958016
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Parallel-Pipes?expand=0&rev=2
This commit is contained in:
2022-03-01 13:49:47 +00:00
committed by Git OBS Bridge
parent a808115106
commit 51f603fba1
5 changed files with 60 additions and 17 deletions

View File

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

View File

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

35
cpanspec.yml Normal file
View File

@@ -0,0 +1,35 @@
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
# baz.patch: PATCH-FIX-OPENSUSE
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module
#skip_doc: regexp_to_skip_for_doc.*
#add_doc: files to add to docs
#misc: |-
#anything else to be added to spec file
#follows directly after %files section, so it can contain new blocks or also
#changes to %files section

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Mon Feb 28 03:07:14 UTC 2022 - Tina Müller <timueller+perl@suse.de>
- updated to 0.100
see /usr/share/doc/packages/perl-Parallel-Pipes/Changes
0.100 2022-02-27 16:42:57 JST
- Introduce Parallel::Pipes::App class (#4)
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 18 10:47:26 UTC 2020 - Dirk Stoecker <opensuse@dstoecker.de> Sun Oct 18 10:47:26 UTC 2020 - Dirk Stoecker <opensuse@dstoecker.de>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package perl-Parallel-Pipes # spec file for package perl-Parallel-Pipes
# #
# Copyright (c) 2020 SUSE LLC # Copyright (c) 2022 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
@@ -16,17 +16,16 @@
# #
Name: perl-Parallel-Pipes
Version: 0.005
Release: 0
%define cpan_name Parallel-Pipes %define cpan_name Parallel-Pipes
Summary: Parallel processing using pipe(2) for communication and synchronization Name: perl-Parallel-Pipes
Version: 0.100
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl Summary: Parallel processing using pipe(2) for communication and synchronization
URL: https://metacpan.org/release/%{cpan_name} URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/S/SK/SKAJI/%{cpan_name}-%{version}.tar.gz Source0: https://cpan.metacpan.org/authors/id/S/SK/SKAJI/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl BuildRequires: perl
BuildRequires: perl-macros BuildRequires: perl-macros
BuildRequires: perl(Module::Build::Tiny) >= 0.034 BuildRequires: perl(Module::Build::Tiny) >= 0.034
@@ -34,7 +33,9 @@ BuildRequires: perl(Test::More) >= 0.98
%{perl_requires} %{perl_requires}
%description %description
*THIS IS EXPERIMENTAL*. *NOTE*: Parallel::Pipes provides low-level interfaces. If you are
interested in using Parallel::Pipes, you may want to look at
Parallel::Pipes::App instead, which provides more friendly interfaces.
Parallel processing is essential, but it is also difficult: Parallel processing is essential, but it is also difficult:
@@ -50,12 +51,11 @@ Parallel::Pipes tries to solve these problems with 'pipe(2)' and
'select(2)'. 'select(2)'.
App::cpm, a fast CPAN module installer, uses Parallel::Pipes. Please look App::cpm, a fast CPAN module installer, uses Parallel::Pipes. Please look
at at https://github.com/skaji/cpm/blob/master/lib/App/cpm.pm or at at at https://github.com/skaji/cpm/blob/master/lib/App/cpm/CLI.pm or at
https://github.com/skaji/Parallel-Pipes/tree/master/eg for real world https://github.com/skaji/Parallel-Pipes/tree/main/eg for real world usages.
usages.
%prep %prep
%setup -q -n %{cpan_name}-%{version} %autosetup -n %{cpan_name}-%{version}
%build %build
perl Build.PL --installdirs=vendor perl Build.PL --installdirs=vendor
@@ -69,8 +69,7 @@ perl Build.PL --installdirs=vendor
%perl_gen_filelist %perl_gen_filelist
%files -f %{name}.files %files -f %{name}.files
%defattr(-,root,root,755) %doc Changes
%doc Changes README
%license LICENSE %license LICENSE
%changelog %changelog