Notification time stamped 2019-09-30 17:35:13 UTC

From 0f93d48e153701a5677d2b655ce914657ab98cc0 Mon Sep 17 00:00:00 2001
From: Paul Howarth <p...@city-fan.org>
Date: Mar 19 2017 14:52:46 +0000
Subject: Update to 1.817


- New upstream release 1.817
  - Fixed broken SIG{'PIPE'} handling: e.g. script.pl | head
  - Improved reliability when running MCE::Shared with threads
  - Added parallel Net::Pcap and Ping demonstrations on Github:
    https://github.com/marioroy/mce-examples/tree/master/network
  - Default to ':raw' for BINMODE in MCE::Shared::Handle
  - Optimized 'dequeue' method in MCE::Shared::Queue
  - Refactored MCE::Hobo to spawn children on the Windows platform
  - Bumped MCE dependency to 1.821
- Update Sereal dependency patch

---

diff --git a/MCE-Shared-1.810-Sereal-deps.patch 
b/MCE-Shared-1.810-Sereal-deps.patch
deleted file mode 100644
index ca959a2..0000000
--- a/MCE-Shared-1.810-Sereal-deps.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Upstream's syntax is mis-parsed by the rpm dependency generator as a hard 
requirement.
-
---- lib/MCE/Hobo.pm
-+++ lib/MCE/Hobo.pm
-@@ -37,10 +37,7 @@ BEGIN {
-    $_is_MSWin32  = ( $^O eq 'MSWin32' && $_has_threads ) ? 1 : 0;
- 
-    if (!exists $INC{'PDL.pm'}) {
--      eval '
--         use Sereal::Encoder 3.015 qw( encode_sereal );
--         use Sereal::Decoder 3.015 qw( decode_sereal );
--      ';
-+      eval 'use Sereal::Encoder 3.015 qw( encode_sereal ); use 
Sereal::Decoder 3.015 qw( decode_sereal );';
-       if ( !$@ ) {
-          my $_encoder_ver = int( Sereal::Encoder->VERSION() );
-          my $_decoder_ver = int( Sereal::Decoder->VERSION() );
---- lib/MCE/Shared/Server.pm
-+++ lib/MCE/Shared/Server.pm
-@@ -47,10 +47,7 @@ BEGIN {
-    eval 'use PDL::IO::Storable' if $INC{'PDL.pm'};
- 
-    if (!exists $INC{'PDL.pm'}) {
--      eval '
--         use Sereal::Encoder 3.015 qw( encode_sereal );
--         use Sereal::Decoder 3.015 qw( decode_sereal );
--      ';
-+      eval 'use Sereal::Encoder 3.015 qw( encode_sereal ); use 
Sereal::Decoder 3.015 qw( decode_sereal );';
-       if ( !$@ ) {
-          my $_encoder_ver = int( Sereal::Encoder->VERSION() );
-          my $_decoder_ver = int( Sereal::Decoder->VERSION() );
diff --git a/MCE-Shared-1.817-Sereal-deps.patch 
b/MCE-Shared-1.817-Sereal-deps.patch
new file mode 100644
index 0000000..8a08709
--- /dev/null
+++ b/MCE-Shared-1.817-Sereal-deps.patch
@@ -0,0 +1,30 @@
+Upstream's syntax is mis-parsed by the rpm dependency generator as a hard 
requirement.
+
+--- lib/MCE/Hobo.pm
++++ lib/MCE/Hobo.pm
+@@ -36,10 +36,7 @@ BEGIN {
+    $_has_threads = $INC{'threads.pm'} ? 1 : 0;
+ 
+    if (!exists $INC{'PDL.pm'}) {
+-      eval '
+-         use Sereal::Encoder 3.015 qw( encode_sereal );
+-         use Sereal::Decoder 3.015 qw( decode_sereal );
+-      ';
++      eval 'use Sereal::Encoder 3.015 qw( encode_sereal ); use 
Sereal::Decoder 3.015 qw( decode_sereal );';
+       if ( !$@ ) {
+          my $_encoder_ver = int( Sereal::Encoder->VERSION() );
+          my $_decoder_ver = int( Sereal::Decoder->VERSION() );
+--- lib/MCE/Shared/Server.pm
++++ lib/MCE/Shared/Server.pm
+@@ -47,10 +47,7 @@ BEGIN {
+    eval 'use PDL::IO::Storable' if $INC{'PDL.pm'};
+ 
+    if (!exists $INC{'PDL.pm'}) {
+-      eval '
+-         use Sereal::Encoder 3.015 qw( encode_sereal );
+-         use Sereal::Decoder 3.015 qw( decode_sereal );
+-      ';
++      eval 'use Sereal::Encoder 3.015 qw( encode_sereal ); use 
Sereal::Decoder 3.015 qw( decode_sereal );';
+       if ( !$@ ) {
+          my $_encoder_ver = int( Sereal::Encoder->VERSION() );
+          my $_decoder_ver = int( Sereal::Decoder->VERSION() );
diff --git a/perl-MCE-Shared.spec b/perl-MCE-Shared.spec
index 61b58ec..81e27a9 100644
--- a/perl-MCE-Shared.spec
+++ b/perl-MCE-Shared.spec
@@ -1,11 +1,11 @@
 Name:          perl-MCE-Shared
-Version:       1.816
+Version:       1.817
 Release:       1%{?dist}
 Summary:       MCE extension for sharing data, supporting threads and processes
 License:       GPL+ or Artistic
 URL:           http://search.cpan.org/dist/MCE-Shared/
 Source0:       
http://search.cpan.org/CPAN/authors/id/M/MA/MARIOROY/MCE-Shared-%{version}.tar.gz
-Patch0:                MCE-Shared-1.810-Sereal-deps.patch
+Patch0:                MCE-Shared-1.817-Sereal-deps.patch
 BuildArch:     noarch
 # Module Build
 BuildRequires: coreutils
@@ -18,7 +18,7 @@ BuildRequires:        perl(ExtUtils::MakeMaker)
 BuildRequires: perl(bytes)
 BuildRequires: perl(Carp)
 BuildRequires: perl(constant)
-BuildRequires: perl(MCE) >= 1.819
+BuildRequires: perl(MCE) >= 1.821
 BuildRequires: perl(MCE::Mutex)
 BuildRequires: perl(MCE::Util)
 BuildRequires: perl(overload)
@@ -43,7 +43,7 @@ BuildRequires:        perl(Test::More) >= 0.88
 # Runtime
 Requires:      perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
 Requires:      perl(IO::FDPass) >= 1.2
-Requires:      perl(MCE) >= 1.819
+Requires:      perl(MCE) >= 1.821
 Requires:      perl(overloading)
 Requires:      perl(Storable) >= 2.04
 Requires:      perl(Symbol)
@@ -96,6 +96,18 @@ make test
 %{_mandir}/man3/MCE::Shared::Server.3*
 
 %changelog
+* Sun Mar 19 2017 Paul Howarth <p...@city-fan.org> - 1.817-1
+- Update to 1.817
+  - Fixed broken SIG{'PIPE'} handling: e.g. script.pl | head
+  - Improved reliability when running MCE::Shared with threads
+  - Added parallel Net::Pcap and Ping demonstrations on Github:
+    https://github.com/marioroy/mce-examples/tree/master/network
+  - Default to ':raw' for BINMODE in MCE::Shared::Handle
+  - Optimized 'dequeue' method in MCE::Shared::Queue
+  - Refactored MCE::Hobo to spawn children on the Windows platform
+  - Bumped MCE dependency to 1.821
+- Update Sereal dependency patch
+
 * Mon Mar  6 2017 Paul Howarth <p...@city-fan.org> - 1.816-1
 - Update to 1.816
   - Optimized SHIFT and UNSHIFT methods in MCE::Shared::Ordhash
diff --git a/sources b/sources
index 8587d56..c181855 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (MCE-Shared-1.816.tar.gz) = 
a95531fb482bb6b277a05026df06caa9e38c8546f457bac323f281238b682b3fb1158d0c15296930f5b2a75bf1b18ca346aefcba2ad3355d7e0603a25c75597b
+SHA512 (MCE-Shared-1.817.tar.gz) = 
5f81c0e11c01a65566331d12a64628a336a8478825ee42bd987f96c432a10bd0ecdd51bcec5b2a5306d007a0afa0be5ef85d5e11b50e3b65158f0b0409115081


        
https://src.fedoraproject.org/rpms/perl-MCE-Shared/c/0f93d48e153701a5677d2b655ce914657ab98cc0?branch=epel8
_______________________________________________
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org

Reply via email to