7 Commits

Author SHA256 Message Date
e023d2f8eb Add Gitea build results 2025-08-12 18:15:23 +02:00
351e24a2cb Accepting request 1236295 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1236295
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-MCE?expand=0&rev=36
2025-01-12 10:15:24 +00:00
9f3f6e16a6 Accepting request 1235437 from devel:languages:perl:autoupdate
- updated to 1.901.0 (1.901)
   see /usr/share/doc/packages/perl-MCE/Changes
  1.901 
    * Add MCE::Core package for future development.
  1.900 
    * Improve MCE::Child exiting when signaled.
  1.899 
    * Fix for MCE::Child and MCE::Channel signal anomaly #24.
      Thank you, @exodist.

OBS-URL: https://build.opensuse.org/request/show/1235437
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-MCE?expand=0&rev=104
2025-01-09 16:31:04 +00:00
8a2b9472fe Accepting request 1197312 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1197312
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-MCE?expand=0&rev=35
2024-08-29 13:43:58 +00:00
87d39febd1 Accepting request 1195936 from devel:languages:perl:autoupdate
- updated to 1.898.0 (1.898)
   see /usr/share/doc/packages/perl-MCE/Changes
  1.898 
    * Fix for MCE::Child #22, Can't call method "len" on an undefined value
      during global destruction. Thanks, @exodist.

OBS-URL: https://build.opensuse.org/request/show/1195936
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-MCE?expand=0&rev=102
2024-08-29 07:05:47 +00:00
299f5e22de Accepting request 1183688 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1183688
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-MCE?expand=0&rev=34
2024-06-28 13:47:19 +00:00
60e52c3221 Accepting request 1182897 from devel:languages:perl:autoupdate
- updated to 1.897.0 (1.897)
   see /usr/share/doc/packages/perl-MCE/Changes
  1.897 
    * In scalar context, the init function in MCE Child and models Flow, Grep,
      Loop, Map, Step, and Stream returns a guard to call finish automatically
      upon leaving the { scope i.e. omitting finish }.
    * Add out_iter_callback to MCE::Candy.
  1.896 
    * Weaken internal core MCE reference to reap workers automatically
      upon leaving the { scope i.e. omitting shutdown }. Note: No change
      to MCE models Flow, Grep, Loop, Map, Step, and Stream. Call finish
      explicitly to reap workers.
      This resolves the case when omitting calling either one of $mce->run(),
      $mce->run(1), or $mce->shutdown() inside a scope, causing workers to
      linger around until completion of the script.
  1.895 
    * Revert back to calling CORE::rand() to set the internal seed.
      MCE and MCE::Child cannot assume the srand or setter function used
      by the application for predictability.
      1. https://perlmonks.org/?node_id=11159834
      2. https://perlmonks.org/?node_id=11159827
    * Add class methods MCE->seed and MCE::Child->seed to retrieve the seed.
  1.894 
    * Improve support for PDL.
  1.893 
    * Preserve functionality for older Perl, non-threads.
  1.892 
    * Remove check if spinning threads i.e. use_threads.
      Predictable output matches non-threads for CORE,
      Math::Prime::Util, and Math::Random::MT::Auto.
      https://perlmonks.org/?node_id=11159834
  1.891 
    * Apply workaround for PDL::srand in MCE and MCE::Child. Thank you, PerlMonks.
      https://www.perlmonks.org/?node_id=11159773
    * Add PDL::srand (v2.062 ~ v2.089) and PDL::srandom (v2.089_01+).
    * Call CORE::srand inside child processes, only.
  1.890 
    * Improve reaping completed workers in MCE::Child.
    * Fix the _sprintf function, failing multiple arguments.

OBS-URL: https://build.opensuse.org/request/show/1182897
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-MCE?expand=0&rev=100
2024-06-27 18:10:52 +00:00
5 changed files with 35 additions and 7 deletions

View File

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

3
MCE-1.901.tar.gz Normal file
View File

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

12
README.md Normal file
View File

@@ -0,0 +1,12 @@
## Build Results
Current state of perl in openSUSE:Factory is
![Factory build results](https://br.opensuse.org/status/openSUSE:Factory/perl-MCE/standard)
The current state of perl in the devel project build (devel:languages:perl)
![Devel project build results](https://br.opensuse.org/status/devel:languages:perl/perl-MCE)

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Fri Jan 3 05:33:21 UTC 2025 - Tina Müller <timueller+perl@suse.de>
- updated to 1.901.0 (1.901)
see /usr/share/doc/packages/perl-MCE/Changes
1.901 Thu Jan 02 17:30:00 EST 2024
* Add MCE::Core package for future development.
1.900 Mon Sep 09 20:30:00 EST 2024
* Improve MCE::Child exiting when signaled.
1.899 Fri Sep 06 00:15:00 EST 2024
* Fix for MCE::Child and MCE::Channel signal anomaly #24.
Thank you, @exodist.
-------------------------------------------------------------------
Thu Aug 22 05:29:42 UTC 2024 - Tina Müller <timueller+perl@suse.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-MCE
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,15 +18,16 @@
%define cpan_name MCE
Name: perl-MCE
Version: 1.898.0
Version: 1.901.0
Release: 0
# 1.898 -> normalize -> 1.898.0
%define cpan_version 1.898
# 1.901 -> normalize -> 1.901.0
%define cpan_version 1.901
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Many-Core Engine for Perl providing parallel processing capabilities
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/M/MA/MARIOROY/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
@@ -41,6 +42,7 @@ Provides: perl(MCE::Channel::SimpleFast) = %{version}
Provides: perl(MCE::Channel::Threads) = %{version}
Provides: perl(MCE::Channel::ThreadsFast) = %{version}
Provides: perl(MCE::Child) = %{version}
Provides: perl(MCE::Core) = %{version}
Provides: perl(MCE::Core::Input::Generator) = %{version}
Provides: perl(MCE::Core::Input::Handle) = %{version}
Provides: perl(MCE::Core::Input::Iterator) = %{version}