|
|
|
@ -1,8 +1,8 @@
|
|
|
|
|
Name: perl-MCE
|
|
|
|
|
Version: 1.876
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Version: 1.884
|
|
|
|
|
Release: 2%{?dist}
|
|
|
|
|
Summary: Many-core Engine for Perl providing parallel processing capabilities
|
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
|
License: GPL-1.0-or-later OR Artistic-1.0-Perl
|
|
|
|
|
URL: https://metacpan.org/release/MCE
|
|
|
|
|
Source0: https://cpan.metacpan.org/authors/id/M/MA/MARIOROY/MCE-%{version}.tar.gz
|
|
|
|
|
Patch0: MCE-1.818-Fix-sharp-bang-line.patch
|
|
|
|
@ -46,7 +46,6 @@ BuildRequires: perl(open)
|
|
|
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
|
|
|
BuildRequires: perl(utf8)
|
|
|
|
|
# Dependencies
|
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo $version))
|
|
|
|
|
Requires: perl(File::Path)
|
|
|
|
|
Requires: perl(POSIX)
|
|
|
|
|
Requires: perl(Sereal) >= 3.015
|
|
|
|
@ -129,8 +128,11 @@ make test
|
|
|
|
|
%{_mandir}/man3/MCE::Candy.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Channel.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Channel::Mutex.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Channel::MutexFast.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Channel::Simple.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Channel::SimpleFast.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Channel::Threads.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Channel::ThreadsFast.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Child.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Core.3*
|
|
|
|
|
%{_mandir}/man3/MCE::Core::Input::Generator.3*
|
|
|
|
@ -167,6 +169,82 @@ make test
|
|
|
|
|
%{_bindir}/mce_zfgrep
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Sep 19 2023 Arkady L. Shane <tigro@msvsphere-os.ru> - 1.884-2
|
|
|
|
|
- Rebuilt for MSVSphere 9.2
|
|
|
|
|
|
|
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.884-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 5 2023 Paul Howarth <paul@city-fan.org> - 1.884-1
|
|
|
|
|
- Update to 1.884
|
|
|
|
|
- Disabled non-blocking dequeue_nb and recv_nb tests on the Windows platform,
|
|
|
|
|
since the author cannot reproduce failing tests reported by CPAN Tester
|
|
|
|
|
aero
|
|
|
|
|
|
|
|
|
|
* Wed Jan 4 2023 Paul Howarth <paul@city-fan.org> - 1.883-1
|
|
|
|
|
- Update to 1.883 (rhbz#2158062)
|
|
|
|
|
- Fix typo in MCE::Channel::SimpleFast documentation
|
|
|
|
|
- Improve 05_mce_child.t test
|
|
|
|
|
|
|
|
|
|
* Sat Dec 3 2022 Paul Howarth <paul@city-fan.org> - 1.882-1
|
|
|
|
|
- Update to 1.882 (rhbz#2150467)
|
|
|
|
|
- Added ABRT to the list of signals to trap in MCE::Signal
|
|
|
|
|
- Added a guard to MCE::Core::Worker for checking if exited prematurely
|
|
|
|
|
- Added init_relay and use_threads import options to MCE and MCE Models
|
|
|
|
|
- Separated input mutexes from the rest of IPC for lesser latency
|
|
|
|
|
- Auto-detect if init_relay is defined and set chunk_size to 1 in MCE::Grep,
|
|
|
|
|
MCE::Map, and MCE::Stream
|
|
|
|
|
- Update the import function in MCE models, detecting if the caller is
|
|
|
|
|
another MCE module, to not export model functions
|
|
|
|
|
- Update the error status if MCE::Child died due to receiving a signal
|
|
|
|
|
- Improved reaping in MCE::Child, before creating a new child
|
|
|
|
|
- Improved the timeout handler in MCE::Child and MCE::Mutex::Channel
|
|
|
|
|
- Fixed private functions _quit and _trap not setting the return value
|
|
|
|
|
|
|
|
|
|
* Fri Oct 14 2022 Paul Howarth <paul@city-fan.org> - 1.881-1
|
|
|
|
|
- Update to 1.881 (rhbz#2134723)
|
|
|
|
|
- Improved the private _parse_chunk_size function for better utilization of
|
|
|
|
|
CPU cores in MCE::Grep, MCE::Map, and MCE::Stream, processing small input
|
|
|
|
|
sizes
|
|
|
|
|
- Previously, chunk_size => 'auto' equals 2 minimally
|
|
|
|
|
- Starting with MCE v1.881, 'auto' equals 1 minimally
|
|
|
|
|
|
|
|
|
|
* Mon Oct 10 2022 Paul Howarth <paul@city-fan.org> - 1.880-1
|
|
|
|
|
- Update to 1.880 (rhbz#2133410)
|
|
|
|
|
- Improved reliability on the Windows platform
|
|
|
|
|
- Improved MCE::Mutex::Channel::timedwait on the Windows platform
|
|
|
|
|
- Improved MCE::Mutex::Channel performance on UNIX platforms
|
|
|
|
|
- Resolved edge case in MCE::Child reaching deadlock
|
|
|
|
|
- Use SPDX-format license tag
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.879-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue May 31 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.879-2
|
|
|
|
|
- Perl 5.36 rebuild
|
|
|
|
|
|
|
|
|
|
* Tue May 24 2022 Paul Howarth <paul@city-fan.org> - 1.879-1
|
|
|
|
|
- Update to 1.879
|
|
|
|
|
- Replace http with https in documentation and meta files
|
|
|
|
|
- Call PDL::set_autopthread_targ(1); disables PDL auto-threading
|
|
|
|
|
|
|
|
|
|
* Sun Feb 20 2022 Paul Howarth <paul@city-fan.org> - 1.878-1
|
|
|
|
|
- Update to 1.878
|
|
|
|
|
- Fix for the fast channel implementations
|
|
|
|
|
|
|
|
|
|
* Sun Feb 20 2022 Paul Howarth <paul@city-fan.org> - 1.877-1
|
|
|
|
|
- Update to 1.877
|
|
|
|
|
- Improved suppressing the PDL CLONE warning; piddles should not be naively
|
|
|
|
|
copied into new threads
|
|
|
|
|
- Added fast channel implementations optimized for non-Unicode strings:
|
|
|
|
|
- MCE::Channel::MutexFast
|
|
|
|
|
- MCE::Channel::SimpleFast
|
|
|
|
|
- MCE::Channel::ThreadsFast
|
|
|
|
|
The main difference is that these lack freeze-thaw serialization
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.876-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Dec 3 2021 Paul Howarth <paul@city-fan.org> - 1.876-1
|
|
|
|
|
- Update to 1.876
|
|
|
|
|
- Allow percentage above 100%% for max_workers in MCE
|