forked from NetBSD/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.3.0 (2022-12-03) What's Changed * Convert tests to sus. by @ioquatix in #188 * Use a linked list for the barrier implementation. by @ioquatix in #192 * Add a concurrency primitive for waiting for a specific number of tasks to complete. by @ioquatix in #189 * Better support for Fiber.set_scheduler. by @ioquatix in #194 * Rename Async::LimitedBarrier to Async::Waiter based on feedback. by @ioquatix in #196 * Relax io-event dependency. by @ioquatix in #200 * Implement semaphore using linked list. by @ioquatix in #203
- Loading branch information
taca
committed
Dec 4, 2022
1 parent
23677de
commit 0367462
Showing
3 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# $NetBSD: Makefile,v 1.2 2022/11/14 11:49:42 taca Exp $ | ||
# $NetBSD: Makefile,v 1.3 2022/12/04 16:57:29 taca Exp $ | ||
|
||
DISTNAME= async-2.2.1 | ||
DISTNAME= async-2.3.0 | ||
CATEGORIES= devel | ||
|
||
MAINTAINER= [email protected] | ||
|
@@ -11,7 +11,7 @@ LICENSE= mit | |
USE_LANGUAGES= # none | ||
|
||
DEPENDS+= ${RUBY_PKGPREFIX}-console>=1.10<2:../../devel/ruby-console | ||
DEPENDS+= ${RUBY_PKGPREFIX}-io-event>=1.1.0<1.2:../../devel/ruby-io-event | ||
DEPENDS+= ${RUBY_PKGPREFIX}-io-event>=1.1.0<2:../../devel/ruby-io-event | ||
DEPENDS+= ${RUBY_PKGPREFIX}-timers>=4.1<5:../../time/ruby-timers | ||
|
||
RUBY_VERSIONS_ACCEPTED= 31 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.1 2022/11/11 13:41:34 taca Exp $ | ||
$NetBSD: distinfo,v 1.2 2022/12/04 16:57:29 taca Exp $ | ||
|
||
BLAKE2s (async-2.2.1.gem) = a9400a0f2e1aab602f67f8f5d4448002d78b8cf03fbf2b4d733c738595be566b | ||
SHA512 (async-2.2.1.gem) = 5a4654eeec8dbb092b4d3e6b425fe48ef818110710cd442f36e0e939d185d06aa7bf0d82e0eae690e26fa608ce853dab71d28c8f21a8a7dc80b9ebe9b60d26f3 | ||
Size (async-2.2.1.gem) = 22528 bytes | ||
BLAKE2s (async-2.3.0.gem) = c3e30c8f30e1adfb0098e8eac956db11c2cfb6146d047dd3730966e4d041ef18 | ||
SHA512 (async-2.3.0.gem) = 9e33abac9c2f209335c86720cf211a39fce822c97e7208a8deb23b8677882c89b459864b430fac53cec4c0f757503fc8bd84eaaf0d9d02814b81b4555196c8b4 | ||
Size (async-2.3.0.gem) = 24576 bytes |