Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C21F884FC1 for ; Sat, 26 Aug 2023 13:33:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id f234JIskdwkw for ; Sat, 26 Aug 2023 13:33:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1BDA884D26 for ; Sat, 26 Aug 2023 13:33:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 15CABFBDB; Sat, 26 Aug 2023 13:33:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693056825195880" MIME-Version: 1.0 Date: Sat, 26 Aug 2023 13:33:45 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-io-event To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230826133345.15CABFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693056825195880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Aug 26 13:33:44 UTC 2023 Modified Files: pkgsrc/devel/ruby-io-event: Makefile PLIST distinfo Log Message: devel/ruby-io-event: update to 1.3.2 1.3.0 (2023-08-23) What's Changed * Rename data -> selector. by @ioquatix in #67 * Spurious wakeups by @ioquatix in #66 * Don't use EPOLLONESHOT for the wakeup event. by @Math2 in #68 * Failing test case for waiting on a reused FD. by @Math2 in #69 * Always re-register epoll descriptor. by @ioquatix in #71 * Fix potential race conditions in io_uring backend. by @ioquatix in #70 * NetBSD/OpenBSD compatibility for KQueue selector, some FreeBSD fixes by @Math2 in #72 * Introduce correct support for compacting GC. by @ioquatix in #73 * Fix external tests by @ioquatix in #75 * Add more external tests. by @ioquatix in #74 * Run coverage tests on more Ruby versions. by @ioquatix in #76 1.3.1 (2023-08-24) What's Changed * Fix a weird bug with duplicate CQEs. by @ioquatix in #78 1.3.2 (2023-08-24) What's Changed * Ensure that every io_uring_get_sqe is used correctly. by @ioquatix in #80 * Add tests for cancellation and update pure Ruby implementation. by @ioquatix in #79 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/ruby-io-event/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/ruby-io-event/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-io-event/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693056825195880 Content-Disposition: inline Content-Length: 2605 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-io-event/Makefile diff -u pkgsrc/devel/ruby-io-event/Makefile:1.10 pkgsrc/devel/ruby-io-event/Makefile:1.11 --- pkgsrc/devel/ruby-io-event/Makefile:1.10 Sun Jul 30 03:55:48 2023 +++ pkgsrc/devel/ruby-io-event/Makefile Sat Aug 26 13:33:44 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2023/07/30 03:55:48 taca Exp $ +# $NetBSD: Makefile,v 1.11 2023/08/26 13:33:44 taca Exp $ -DISTNAME= io-event-1.2.3 +DISTNAME= io-event-1.3.2 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/ruby-io-event/PLIST diff -u pkgsrc/devel/ruby-io-event/PLIST:1.1 pkgsrc/devel/ruby-io-event/PLIST:1.2 --- pkgsrc/devel/ruby-io-event/PLIST:1.1 Fri Nov 11 13:37:40 2022 +++ pkgsrc/devel/ruby-io-event/PLIST Sat Aug 26 13:33:44 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2022/11/11 13:37:40 taca Exp $ +@comment $NetBSD: PLIST,v 1.2 2023/08/26 13:33:44 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_EXTSDIR}/IO_Event.${RUBY_DLEXT} ${GEM_EXTSDIR}/gem.build_complete @@ -8,10 +8,12 @@ ${GEM_LIBDIR}/ext/io/event/event.c ${GEM_LIBDIR}/ext/io/event/event.h ${GEM_LIBDIR}/ext/io/event/interrupt.c ${GEM_LIBDIR}/ext/io/event/interrupt.h +${GEM_LIBDIR}/ext/io/event/selector/array.h ${GEM_LIBDIR}/ext/io/event/selector/epoll.c ${GEM_LIBDIR}/ext/io/event/selector/epoll.h ${GEM_LIBDIR}/ext/io/event/selector/kqueue.c ${GEM_LIBDIR}/ext/io/event/selector/kqueue.h +${GEM_LIBDIR}/ext/io/event/selector/list.h ${GEM_LIBDIR}/ext/io/event/selector/pidfd.c ${GEM_LIBDIR}/ext/io/event/selector/selector.c ${GEM_LIBDIR}/ext/io/event/selector/selector.h Index: pkgsrc/devel/ruby-io-event/distinfo diff -u pkgsrc/devel/ruby-io-event/distinfo:1.8 pkgsrc/devel/ruby-io-event/distinfo:1.9 --- pkgsrc/devel/ruby-io-event/distinfo:1.8 Sun Jul 30 03:55:48 2023 +++ pkgsrc/devel/ruby-io-event/distinfo Sat Aug 26 13:33:44 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2023/07/30 03:55:48 taca Exp $ +$NetBSD: distinfo,v 1.9 2023/08/26 13:33:44 taca Exp $ -BLAKE2s (io-event-1.2.3.gem) = 99300679ac1e7e90bd714a0f3da1bc02d4ed6e5aaeaf0930025ec96f05c36590 -SHA512 (io-event-1.2.3.gem) = 3950c0193969527974f4e0a409bb57eddce2d58468c473ad98a0e58abb95b344c1c646e7a82daee00c1877d7c3eb77b572f9ee846044b4f0f049149fda925cea -Size (io-event-1.2.3.gem) = 28672 bytes +BLAKE2s (io-event-1.3.2.gem) = 514f00d52f69d1ad7da762e8a7b89b1ad2da94888e20016461535afb52c61a9b +SHA512 (io-event-1.3.2.gem) = 796b263fb9c1072b53c9e411511462959706cabba6b938f39945ac7f1bd59640d0e65e8e01b4d2092b4667f4f47e2d5377f0946a422966fa081c38446ff4bdf0 +Size (io-event-1.3.2.gem) = 36352 bytes --_----------=_1693056825195880--