Compare commits
No commits in common. "c8-stream-5.3" and "c8-beta-stream-5.32" have entirely different histories.
c8-stream-
...
c8-beta-st
103
SOURCES/threads-2.21-Upgrade-to-2.25.patch
Normal file
103
SOURCES/threads-2.21-Upgrade-to-2.25.patch
Normal file
@ -0,0 +1,103 @@
|
||||
From 0bb2d0b00e011f1d77d1766fac4777c6bc376af7 Mon Sep 17 00:00:00 2001
|
||||
From: Jitka Plesnikova <jplesnik@redhat.com>
|
||||
Date: Mon, 1 Jun 2020 13:23:16 +0200
|
||||
Subject: [PATCH] Upgrade to 2.25
|
||||
|
||||
---
|
||||
lib/threads.pm | 22 +++++++++++-----------
|
||||
threads.xs | 2 +-
|
||||
2 files changed, 12 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/lib/threads.pm b/lib/threads.pm
|
||||
index 1b99567..ee201a2 100644
|
||||
--- a/lib/threads.pm
|
||||
+++ b/lib/threads.pm
|
||||
@@ -5,7 +5,7 @@ use 5.008;
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
-our $VERSION = '2.22'; # remember to update version in POD!
|
||||
+our $VERSION = '2.25'; # remember to update version in POD!
|
||||
my $XS_VERSION = $VERSION;
|
||||
$VERSION = eval $VERSION;
|
||||
|
||||
@@ -134,13 +134,13 @@ threads - Perl interpreter-based threads
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
-This document describes threads version 2.21
|
||||
+This document describes threads version 2.25
|
||||
|
||||
=head1 WARNING
|
||||
|
||||
The "interpreter-based threads" provided by Perl are not the fast, lightweight
|
||||
system for multitasking that one might expect or hope for. Threads are
|
||||
-implemented in a way that make them easy to misuse. Few people know how to
|
||||
+implemented in a way that makes them easy to misuse. Few people know how to
|
||||
use them correctly or will be able to provide help.
|
||||
|
||||
The use of interpreter-based threads in perl is officially
|
||||
@@ -914,7 +914,7 @@ C<-E<gt>import()>) after any threads are started, and in such a way that no
|
||||
other threads are started afterwards.
|
||||
|
||||
If the above does not work, or is not adequate for your application, then file
|
||||
-a bug report on L<http://rt.cpan.org/Public/> against the problematic module.
|
||||
+a bug report on L<https://rt.cpan.org/Public/> against the problematic module.
|
||||
|
||||
=item Memory consumption
|
||||
|
||||
@@ -1090,7 +1090,7 @@ determine whether your system supports it.
|
||||
|
||||
In prior perl versions, spawning threads with open directory handles would
|
||||
crash the interpreter.
|
||||
-L<[perl #75154]|http://rt.perl.org/rt3/Public/Bug/Display.html?id=75154>
|
||||
+L<[perl #75154]|https://rt.perl.org/rt3/Public/Bug/Display.html?id=75154>
|
||||
|
||||
=item Detached threads and global destruction
|
||||
|
||||
@@ -1118,8 +1118,8 @@ unreferenced scalars. However, such warnings are harmless, and may safely be
|
||||
ignored.
|
||||
|
||||
You can search for L<threads> related bug reports at
|
||||
-L<http://rt.cpan.org/Public/>. If needed submit any new bugs, problems,
|
||||
-patches, etc. to: L<http://rt.cpan.org/Public/Dist/Display.html?Name=threads>
|
||||
+L<https://rt.cpan.org/Public/>. If needed submit any new bugs, problems,
|
||||
+patches, etc. to: L<https://rt.cpan.org/Public/Dist/Display.html?Name=threads>
|
||||
|
||||
=back
|
||||
|
||||
@@ -1137,14 +1137,14 @@ L<https://github.com/Dual-Life/threads>
|
||||
|
||||
L<threads::shared>, L<perlthrtut>
|
||||
|
||||
-L<http://www.perl.com/pub/a/2002/06/11/threads.html> and
|
||||
-L<http://www.perl.com/pub/a/2002/09/04/threads.html>
|
||||
+L<https://www.perl.com/pub/a/2002/06/11/threads.html> and
|
||||
+L<https://www.perl.com/pub/a/2002/09/04/threads.html>
|
||||
|
||||
Perl threads mailing list:
|
||||
-L<http://lists.perl.org/list/ithreads.html>
|
||||
+L<https://lists.perl.org/list/ithreads.html>
|
||||
|
||||
Stack size discussion:
|
||||
-L<http://www.perlmonks.org/?node_id=532956>
|
||||
+L<https://www.perlmonks.org/?node_id=532956>
|
||||
|
||||
Sample code in the I<examples> directory of this distribution on CPAN.
|
||||
|
||||
diff --git a/threads.xs b/threads.xs
|
||||
index 3da9165..ab64dc0 100644
|
||||
--- a/threads.xs
|
||||
+++ b/threads.xs
|
||||
@@ -676,7 +676,7 @@ S_ithread_run(void * arg)
|
||||
}
|
||||
|
||||
/* At this point, the interpreter may have been freed, so call
|
||||
- * free in the the context of of the 'main' interpreter which
|
||||
+ * free in the context of the 'main' interpreter which
|
||||
* can't have been freed due to the veto_cleanup mechanism.
|
||||
*/
|
||||
aTHX = MY_POOL.main_thread.interp;
|
||||
--
|
||||
2.25.4
|
||||
|
||||
@ -1,14 +1,16 @@
|
||||
%global base_version 2.21
|
||||
Name: perl-threads
|
||||
Epoch: 1
|
||||
Version: 2.22
|
||||
Release: 439%{?dist}
|
||||
Version: 2.25
|
||||
Release: 457%{?dist}
|
||||
Summary: Perl interpreter-based threads
|
||||
License: GPL+ or Artistic
|
||||
URL: https://metacpan.org/release/threads
|
||||
Source0: https://cpan.metacpan.org/authors/id/J/JD/JDHEDDEN/threads-%{base_version}.tar.gz
|
||||
# Unbundled from perl 5.28.0
|
||||
Patch0: threads-2.21-Upgrade-to-2.22.patch
|
||||
# Unbundled from perl 5.32.0
|
||||
Patch1: threads-2.21-Upgrade-to-2.25.patch
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: gcc
|
||||
@ -26,6 +28,7 @@ BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(overload)
|
||||
BuildRequires: perl(XSLoader)
|
||||
# Tests only:
|
||||
BuildRequires: perl(blib)
|
||||
BuildRequires: perl(Cwd)
|
||||
BuildRequires: perl(ExtUtils::testlib)
|
||||
BuildRequires: perl(File::Path)
|
||||
@ -54,18 +57,21 @@ This threading model has been deprecated, and was removed as of Perl 5.10.0.)
|
||||
%prep
|
||||
%setup -q -n threads-%{base_version}
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
chmod -x examples/*
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 OPTIMIZE="$RPM_OPT_FLAGS"
|
||||
make %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 OPTIMIZE="$RPM_OPT_FLAGS"
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=$RPM_BUILD_ROOT
|
||||
%{make_install}
|
||||
find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -delete
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
unset GIT_DIR PERL_BUILD_PACKAGING PERL_CORE PERL_RUNPERL_DEBUG \
|
||||
PERL5_ITHREADS_STACK_SIZE RUN_MAINTAINER_TESTS
|
||||
make test
|
||||
|
||||
%files
|
||||
@ -75,6 +81,23 @@ make test
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.25-457
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1:2.25-456
|
||||
- Upgrade to 2.25 as provided in perl-5.32.0
|
||||
|
||||
* Thu Feb 06 2020 Petr Pisar <ppisar@redhat.com> - 1:2.22-442
|
||||
- Specify all dependencies
|
||||
|
||||
* Thu Feb 06 2020 Tom Stellard <tstellar@redhat.com> - 1:2.22-441
|
||||
- Spec file cleanups: Use make_build and make_install macros
|
||||
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
|
||||
- https://fedoraproject.org/wiki/Perl/Tips#ExtUtils::MakeMake
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.22-440
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:2.22-439
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user