summaryrefslogtreecommitdiff
path: root/devel/p5-Coro
diff options
context:
space:
mode:
authormef <mef>2015-02-13 14:00:02 +0000
committermef <mef>2015-02-13 14:00:02 +0000
commitf3986b551d221e8dbdc58f8ccaba55d43e858ace (patch)
tree4b75e89865feaeb351c00488d7c809329d8d8e43 /devel/p5-Coro
parentbf508b18cf463c01f6d722b4466a9a093e6670ac (diff)
downloadpkgsrc-f3986b551d221e8dbdc58f8ccaba55d43e858ace.tar.gz
(pkgsrc)
- Drop patch-Colo_ecb.h (It was "Use __builtin_unreachable on Clang instead of the broken C11 hack.", and now upstream takes care.) (upstream) - Update 6.41 to 6.42 ------------------- 6.42 Wed Feb 11 20:29:52 CET 2015 - Coro::SemaphoreSet->try did not actually work (analyzed by SATO Kentaro). - upgrade libecb to be C11 compliant.
Diffstat (limited to 'devel/p5-Coro')
-rw-r--r--devel/p5-Coro/Makefile4
-rw-r--r--devel/p5-Coro/distinfo9
-rw-r--r--devel/p5-Coro/patches/patch-Coro_ecb.h15
3 files changed, 6 insertions, 22 deletions
diff --git a/devel/p5-Coro/Makefile b/devel/p5-Coro/Makefile
index ffe0a246d6e..c3142ab48c5 100644
--- a/devel/p5-Coro/Makefile
+++ b/devel/p5-Coro/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.14 2015/01/29 00:48:51 mef Exp $
+# $NetBSD: Makefile,v 1.15 2015/02/13 14:00:02 mef Exp $
#
-DISTNAME= Coro-6.41
+DISTNAME= Coro-6.42
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Coro/}
diff --git a/devel/p5-Coro/distinfo b/devel/p5-Coro/distinfo
index 8882f1e19b9..bc9c46272ed 100644
--- a/devel/p5-Coro/distinfo
+++ b/devel/p5-Coro/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.9 2015/01/29 00:48:51 mef Exp $
+$NetBSD: distinfo,v 1.10 2015/02/13 14:00:02 mef Exp $
-SHA1 (Coro-6.41.tar.gz) = 795e9e114b82f41e75d797a95f893eeda91a5a2b
-RMD160 (Coro-6.41.tar.gz) = 2b15a8a81813d219ea67afe3f17ee1383dad5daf
-Size (Coro-6.41.tar.gz) = 189177 bytes
-SHA1 (patch-Coro_ecb.h) = 2d777b733a998ba606071c9e8ff1d7edb41b9045
+SHA1 (Coro-6.42.tar.gz) = 5aa7e840dc475c479d7c48fb912de06dd5a3e0b6
+RMD160 (Coro-6.42.tar.gz) = 3cfede527cf382bec984afbbf84b5cfe942ca842
+Size (Coro-6.42.tar.gz) = 189506 bytes
SHA1 (patch-aa) = 4116ed31979879c16ebee194eb32a4c4c2c4438d
diff --git a/devel/p5-Coro/patches/patch-Coro_ecb.h b/devel/p5-Coro/patches/patch-Coro_ecb.h
deleted file mode 100644
index 60d0c8d6e29..00000000000
--- a/devel/p5-Coro/patches/patch-Coro_ecb.h
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-Coro_ecb.h,v 1.2 2015/01/29 00:48:51 mef Exp $
-
-Use __builtin_unreachable on Clang instead of the broken C11 hack.
-
---- Coro/ecb.h.orig 2014-11-10 12:35:13.000000000 +0000
-+++ Coro/ecb.h
-@@ -523,7 +523,7 @@ ecb_inline uint64_t ecb_rotr64 (uint64_t
- }
- #endif
-
--#if ECB_GCC_VERSION(4,5)
-+#if ECB_GCC_VERSION(4,5) || defined(__clang__)
- #define ecb_unreachable() __builtin_unreachable ()
- #else
- /* this seems to work fine, but gcc always emits a warning for it :/ */