diff options
author | Kent Fredric <kentnl@gentoo.org> | 2020-07-06 07:10:23 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-07-06 07:10:42 +1200 |
commit | 41023af807408d1a265c67eed2a5c15acb50dd0b (patch) | |
tree | e969aaca9746531df4a004f5796a9c2b478331a2 /dev-perl/Coro | |
parent | media-gfx/imagemagick: bump to v6.9.11-23 & v7.0.10-23 (diff) | |
download | gentoo-41023af807408d1a265c67eed2a5c15acb50dd0b.tar.gz gentoo-41023af807408d1a265c67eed2a5c15acb50dd0b.tar.bz2 gentoo-41023af807408d1a265c67eed2a5c15acb50dd0b.zip |
dev-perl/Coro: Bump to version 6.550.0
Upstream:
- Fix compile with threaded perl
- Simplify/speedup __DIE__ and __WARN__ handling
- Add fixes for perl 5.22 compat (PadlistNAMES)
- Add fixes for perl 5.24 compat (SUB_ARGARRAY)
- Add fixes for perl 5.26 compat (PL_comppad -> PADOFFSET)
- disable FORTIFY_SOURCE to avoid broken fortified longjmp on some libcs
- Reattempt JIT allocation wtih PROT_EXEC to improve portability
- Fix some statevar types for newer perls
- safe_cancel no longer croaks when called on already-destroyed threads
- libcoro now allows sharing coro threads using pthreads backend among
different threads.
- Always allow ->call and ->eval when coro is the current coroutine
- Autogenerated Coro::AIO prototypes now add ";" to avoid creating named
unary operators, to avoid `aio_mlockall 4 | 8` getting parsed as
`(aio_mlockall 4) | 8`
- Ensure Coro::RWLock wakes up all readers after a wrlock
- More fixes for minix 3.3
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-perl/Coro')
-rw-r--r-- | dev-perl/Coro/Coro-6.550.0.ebuild | 44 | ||||
-rw-r--r-- | dev-perl/Coro/Manifest | 1 |
2 files changed, 45 insertions, 0 deletions
diff --git a/dev-perl/Coro/Coro-6.550.0.ebuild b/dev-perl/Coro/Coro-6.550.0.ebuild new file mode 100644 index 000000000000..7ba23ca2253e --- /dev/null +++ b/dev-perl/Coro/Coro-6.550.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=MLEHMANN +DIST_VERSION=6.55 +DIST_EXAMPLES=( "eg/*" ) +inherit perl-module + +DESCRIPTION="The only real threads in perl" +LICENSE="|| ( Artistic GPL-1+ ) LGPL-2.1+ || ( BSD-2 GPL-2+ )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+ev event" + +RDEPEND=" + >=dev-perl/AnyEvent-7 + ev? ( >=dev-perl/EV-4.0.0 ) + event? ( >=dev-perl/Event-1.80.0 ) + >=dev-perl/Guard-0.500.0 + virtual/perl-Scalar-List-Utils + >=virtual/perl-Storable-2.150.0 + dev-perl/common-sense +" +BDEPEND="${RDEPEND} + dev-perl/Canary-Stability + >=virtual/perl-ExtUtils-MakeMaker-6.520.0 +" +PATCHES=( + "${FILESDIR}/6.514.0-ev-config.patch" +) +src_configure() { + local myopts=() + use ev && myopts+=("EV") + use event && myopts+=( "Event" ) + GENTOO_OPTS="${myopts[@]}" perl-module_src_configure +} +src_compile() { + mymake=( + "OPTIMIZE=${CFLAGS}" + ) + perl-module_src_compile +} diff --git a/dev-perl/Coro/Manifest b/dev-perl/Coro/Manifest index fd2a02abdf9f..c245de2d104d 100644 --- a/dev-perl/Coro/Manifest +++ b/dev-perl/Coro/Manifest @@ -1 +1,2 @@ DIST Coro-6.514.tar.gz 195122 BLAKE2B d512a990f54e22af20ea91165817d00bab20dcbe0e9111988f704799556cf246f96a40a8b59b56977edefbabf8830453662001ceb35eb4d0f1761ce7c3da3fb7 SHA512 340eea9bc2a33c40813f4852d3a12ff947426fd329a4867a36262a9ece936c9e43d36ba5e4355d1f8f91cb40690de3bb1637ab0b0651518c22fb17a34ee90b37 +DIST Coro-6.55.tar.gz 195586 BLAKE2B b2f6f47f91fcb4af584896cd91c2631d5622556d63206eb1e7a5796cc3b7d0498d40021f06a8367402a34b0771b7ccc80776598a61811cc67d828828bb8a5f4a SHA512 47f22033e52d1734755d7f68175b86784c688a8b8e87d0ce0295e7fe9df9134d5ac9fce8915e8ea1d9355a6d1f3642c44c3c4d745e1e6afb0a9e61c15b47d41e |