head	1.6;
access;
symbols
	pkgsrc-2026Q1:1.6.0.6
	pkgsrc-2026Q1-base:1.6
	pkgsrc-2025Q4:1.6.0.4
	pkgsrc-2025Q4-base:1.6
	pkgsrc-2025Q3:1.6.0.2
	pkgsrc-2025Q3-base:1.6
	pkgsrc-2025Q2:1.5.0.4
	pkgsrc-2025Q2-base:1.5
	pkgsrc-2025Q1:1.5.0.2
	pkgsrc-2025Q1-base:1.5
	pkgsrc-2024Q4:1.3.0.6
	pkgsrc-2024Q4-base:1.3
	pkgsrc-2024Q3:1.3.0.4
	pkgsrc-2024Q3-base:1.3
	pkgsrc-2024Q2:1.3.0.2
	pkgsrc-2024Q2-base:1.3
	pkgsrc-2024Q1:1.2.0.4
	pkgsrc-2024Q1-base:1.2
	pkgsrc-2023Q4:1.2.0.2
	pkgsrc-2023Q4-base:1.2;
locks; strict;
comment	@# @;


1.6
date	2025.08.13.11.07.04;	author pho;	state Exp;
branches;
next	1.5;
commitid	oGqtJTKdyCfCKy6G;

1.5
date	2025.03.05.03.39.33;	author pho;	state Exp;
branches;
next	1.4;
commitid	VPkRDaZT4MoYrPLF;

1.4
date	2025.02.02.13.05.28;	author pho;	state Exp;
branches;
next	1.3;
commitid	Zl7FwsffomOQzTHF;

1.3
date	2024.05.09.01.32.17;	author pho;	state Exp;
branches;
next	1.2;
commitid	zmOkUK6EkFT4og9F;

1.2
date	2023.11.02.06.37.01;	author pho;	state Exp;
branches;
next	1.1;
commitid	dPkTdcIqhE4k90LE;

1.1
date	2023.10.31.16.29.34;	author pho;	state Exp;
branches;
next	;
commitid	a8CcOygMtHe5vNKE;


desc
@@


1.6
log
@Bump all Haskell because lang/ghc910 has got a library change
@
text
@# $NetBSD: Makefile,v 1.5 2025/03/05 03:39:33 pho Exp $

DISTNAME=	unagi-chan-0.4.1.4
PKGREVISION=	5
CATEGORIES=	devel

MAINTAINER=	pkgsrc-users@@NetBSD.org
COMMENT=	Fast concurrent queues with a Chan-like API, and more
LICENSE=	modified-bsd

.include "../../devel/hs-atomic-primops/buildlink3.mk"
.include "../../devel/hs-primitive/buildlink3.mk"
.include "../../mk/haskell.mk"
.include "../../mk/bsd.pkg.mk"
@


1.5
log
@recursive revbump after patching lang/ghc910
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.4 2025/02/02 13:05:28 pho Exp $
d4 1
a4 1
PKGREVISION=	4
@


1.4
log
@Bump all Haskell packages after switching the default compiler.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.3 2024/05/09 01:32:17 pho Exp $
d4 1
a4 1
PKGREVISION=	3
@


1.3
log
@Recursive revbump after changing the default Haskell compiler
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2023/11/02 06:37:01 pho Exp $
d4 1
a4 1
PKGREVISION=	2
@


1.2
log
@Revbump all Haskell after updating lang/ghc96
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2023/10/31 16:29:34 pho Exp $
d4 1
a4 1
PKGREVISION=	1
@


1.1
log
@devel/hs-unagi-chan: import hs-unagi-chan-0.4.1.4

This library provides implementations of concurrent FIFO queues (for both
general boxed and primitive unboxed values) that are fast, perform well
under contention, and offer a Chan-like interface. The library may be of
limited usefulness outside of x86 architectures where the fetch-and-add
instruction is not available.

We export several variations of our design; some support additional
functionality while others try for lower latency by removing features or
making them more restrictive (e.g. in the Unboxed variants).

* Unagi: a general-purpose near drop-in replacement for Chan.
* Unagi.Unboxed: like Unagi but specialized for primitive types; this may
  perform better if a queue grows very large.
* Unagi.Bounded: a bounded variant with blocking and non-blocking writes,
  and other functionality where a notion of the queue's capacity is
  required.
* Unagi.NoBlocking: lowest latency implementations for when blocking reads
  aren't required.
* Unagi.NoBlocking.Unboxed: like Unagi.NoBlocking but for primitive types.
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.10 2023/10/09 04:54:17 pho Exp $
d4 1
@

