Skip to content

Commit

Permalink
devel/ruby-async: update to 2.6.3
Browse files Browse the repository at this point in the history
2.6.3 (2023-07-28)

*  Documentation improvements. (#248)
* Modernize gem. (#249)
* Extended documentation. (#250)
  - Consistent usage of reactor/event loop terminology.
  - Show how to use `ensure` with barrier.
  - Expanded documentation / questions / answers.
  - Add best practices.
* Improve readme.
* Add code of conduct.
* Replace 3.times do with 1.upto(3) do.
* Fix guide lines, fixes #251.
* Fix Markdown syntax highlighting marker (#252)
* Guide: ensure barrier is in scope (#253)
  - This change avoids a NoMethodError on the barrier local variable.  And
    also a LoadError, with the Async::Barrier constant.
* Follow-up barrier in scope docs fix (#254)
  - This makes the same change as #253 but in this file.
* Don't run scheduler when there is a pending exception. (#262)
* Ensure the scheduler is cleaned up on exit.
* Better handling of interrupted flag. (#264)
  • Loading branch information
taca committed Jul 30, 2023
1 parent 09d5493 commit c61dc0d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions devel/ruby-async/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.11 2023/06/17 13:27:33 taca Exp $
# $NetBSD: Makefile,v 1.12 2023/07/30 03:51:32 taca Exp $

DISTNAME= async-2.6.2
DISTNAME= async-2.6.3
CATEGORIES= devel

MAINTAINER= pkgsrc-users@NetBSD.org
Expand Down
4 changes: 3 additions & 1 deletion devel/ruby-async/PLIST
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@comment $NetBSD: PLIST,v 1.2 2022/12/04 16:57:29 taca Exp $
@comment $NetBSD: PLIST,v 1.3 2023/07/30 03:51:32 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/conduct.md
${GEM_LIBDIR}/lib/async.rb
${GEM_LIBDIR}/lib/async/barrier.md
${GEM_LIBDIR}/lib/async/barrier.rb
Expand All @@ -14,6 +15,7 @@ ${GEM_LIBDIR}/lib/async/reactor.rb
${GEM_LIBDIR}/lib/async/scheduler.rb
${GEM_LIBDIR}/lib/async/semaphore.md
${GEM_LIBDIR}/lib/async/semaphore.rb
${GEM_LIBDIR}/lib/async/task.md
${GEM_LIBDIR}/lib/async/task.rb
${GEM_LIBDIR}/lib/async/variable.rb
${GEM_LIBDIR}/lib/async/version.rb
Expand Down
8 changes: 4 additions & 4 deletions devel/ruby-async/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.9 2023/06/17 13:27:33 taca Exp $
$NetBSD: distinfo,v 1.10 2023/07/30 03:51:32 taca Exp $

BLAKE2s (async-2.6.2.gem) = d0316e2e719a28513e5285d539408b3fd9f402e29cf6aae58406c72aeaeadb3c
SHA512 (async-2.6.2.gem) = e69c73035000eec29ee8f914cdf0172e575f51633f9b6a0ec19af2539be1495460328b24f27d66056bf5d44b3baedd3e21cafe951e442d2e1f0556bed3653d8b
Size (async-2.6.2.gem) = 26624 bytes
BLAKE2s (async-2.6.3.gem) = 4fcf99362738d6f9fe0d2a1d1aca9b27131fcd708a2fb8c6322abbb21e5fd8db
SHA512 (async-2.6.3.gem) = 44a96ab179923bf8e28beb57f43d1ebf32aa4043a607fffe13f3849c9ed7c7860bff104be60e90281b53d0a4a35aa9ec2f7e273f295b1aa7e238d7370615265b
Size (async-2.6.3.gem) = 29184 bytes

0 comments on commit c61dc0d

Please sign in to comment.