Skip to content

Commit 13b5c9c

Browse files
committed
Update to stm-2.5.0.0
2.5.0.0 Sep 2018 * Removed alwaysSucceeds and always, GHC's invariant checking primitives. (GHC #14324) * Add lengthTBQueue to Control.Concurrent.STM.TBQueue (gh-9) * Add stateTVar :: TVar s -> (s -> (a, s)) -> STM a combinator (gh-14) * Switched newTBQueue and newTBQueueIO to accept Natural as size (gh-17) * Switched signalTSemN and newTSem to accept Natural and Integer respectively (gh-17) 2.4.5.1 Sep 2018 * Fix incorrect bookkeeping of write capacity in flushTBQueue (gh-9) * Avoid redundant writeTVars in flushTQueue to avoid unncessarily invalidating other transactions (gh-6) 2.4.5.0 Feb 2018 * Fix space leak in TBQueue (gh-2, GHC#14494) * Make signalTSem resilient against Int overflows (gh-4) * Make definition of readTQueue consistent with readTBQueue (gh-3, GHC#9539) * Add flushTQueue to Control.Concurrent.STM.TQueue (gh-1) * Add flushTBQueue to Control.Concurrent.STM.TBQueue (gh-1) * Add signalTSemN operation (gh-5) 2.4.4.1 Dec 2015 * Add support for base-4.9.0.0 * Drop support for GHC 6.12 / base-4.2 2.4.4 Dec 2014 * Add support for base-4.8.0.0 * Tighten Safe Haskell bounds * Add mkWeakTMVar to Control.Concurrent.STM.TMVar * Add @since-annotations
1 parent 094f2e7 commit 13b5c9c

File tree

4 files changed

+10
-54
lines changed

4 files changed

+10
-54
lines changed

devel/hs-stm/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# $NetBSD: Makefile,v 1.1 2014/05/25 21:54:58 szptvlfn Exp $
1+
# $NetBSD: Makefile,v 1.2 2020/01/01 02:18:07 pho Exp $
22

3-
DISTNAME= stm-2.4.3
3+
DISTNAME= stm-2.5.0.0
44
CATEGORIES= devel
55

66
MAINTAINER= pho@cielonegro.org

devel/hs-stm/PLIST

-44
This file was deleted.

devel/hs-stm/buildlink3.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# $NetBSD: buildlink3.mk,v 1.2 2014/08/29 14:08:39 szptvlfn Exp $
1+
# $NetBSD: buildlink3.mk,v 1.3 2020/01/01 02:18:07 pho Exp $
22

33
BUILDLINK_TREE+= hs-stm
44

55
.if !defined(HS_STM_BUILDLINK3_MK)
66
HS_STM_BUILDLINK3_MK:=
77

8-
BUILDLINK_API_DEPENDS.hs-stm+= hs-stm>=2.4.3
9-
BUILDLINK_ABI_DEPENDS.hs-stm+= hs-stm>=2.4.3
8+
BUILDLINK_API_DEPENDS.hs-stm+= hs-stm>=2.5.0
9+
BUILDLINK_ABI_DEPENDS.hs-stm+= hs-stm>=2.5.0.0
1010
BUILDLINK_PKGSRCDIR.hs-stm?= ../../devel/hs-stm
1111
.endif # HS_STM_BUILDLINK3_MK
1212

devel/hs-stm/distinfo

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
$NetBSD: distinfo,v 1.2 2015/11/03 03:27:33 agc Exp $
1+
$NetBSD: distinfo,v 1.3 2020/01/01 02:18:07 pho Exp $
22

3-
SHA1 (stm-2.4.3.tar.gz) = 72fbf401ee4be19bd509b2238879889037d11042
4-
RMD160 (stm-2.4.3.tar.gz) = 49497b5eae13a260ef81fc33092866405a4ef5e1
5-
SHA512 (stm-2.4.3.tar.gz) = a42d6ffc27318f11be80be16292b5e86a47087780aea5ff7bd27b1d36e966429e3dd645e0c749cc6d957be48a947e63f314cdfb412d7a9adb676d7e9fdfb6e57
6-
Size (stm-2.4.3.tar.gz) = 10145 bytes
3+
SHA1 (stm-2.5.0.0.tar.gz) = 8663cdbb6447b1abf2b05f204dbc6a5a852869dd
4+
RMD160 (stm-2.5.0.0.tar.gz) = 693121ca8c94ba8e9264099e5ae3441273f7970c
5+
SHA512 (stm-2.5.0.0.tar.gz) = 64516ff5eba42a469046af51f12cb55afca795c7a897b9ac16c3446d547ad3894d9b80be3716e86291825e8fa91335ee89e9c9c6738c95f3cbd8ee0739236651
6+
Size (stm-2.5.0.0.tar.gz) = 12335 bytes

0 commit comments

Comments
 (0)