-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devel/ruby-io-event: update to 1.4.2
1.3.3 (2023-12-28) What's Changed * Correctly pass through flags rb_process_status_wait. by @ioquatix in #81 * Ensure that the saved node is freed correctly if an exception occurs. by @ioquatix in #84 1.4.0 (2023-12-28) What's Changed * Ruby 3.3 updates (dropped support for Ruby 3.0) by @ioquatix in #85 1.4.1 (2024-01-10) * Add liburing package installation for Ubuntu tests. (#87) * Also fix #88: -std=c99 is disabling struct timespec * Always #include <ruby.h> before any system header (#89) 1.4.2 (2024-01-14) * No change except version.
- Loading branch information
taca
committed
Feb 3, 2024
1 parent
bd8de91
commit 9036d2f
Showing
3 changed files
with
21 additions
and
6 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.11 2023/08/26 13:33:44 taca Exp $ | ||
# $NetBSD: Makefile,v 1.12 2024/02/03 15:22:55 taca Exp $ | ||
|
||
DISTNAME= io-event-1.3.2 | ||
DISTNAME= io-event-1.4.2 | ||
CATEGORIES= devel | ||
|
||
MAINTAINER= [email protected] | ||
|
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,6 @@ | ||
$NetBSD: distinfo,v 1.9 2023/08/26 13:33:44 taca Exp $ | ||
$NetBSD: distinfo,v 1.10 2024/02/03 15:22:55 taca Exp $ | ||
|
||
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 | ||
BLAKE2s (io-event-1.4.2.gem) = 4962d1d6c6342c224a7f5c394b05d541ac1a6f97f557a068c6fbe1aae998a648 | ||
SHA512 (io-event-1.4.2.gem) = fb762e5dce931b3ff3076b28709e0e2bf8b6e830f4e854f6ef14f1a4e196e3c5918e2fbadfee4f06daa627927694446076bb122f1ab1ab79685d89315b04f02f | ||
Size (io-event-1.4.2.gem) = 37376 bytes | ||
SHA1 (patch-ext_io_event_selector_selector.h) = f273ae6b63f69b4c52b87af071a6dda77ccf8e44 |
14 changes: 14 additions & 0 deletions
14
devel/ruby-io-event/patches/patch-ext_io_event_selector_selector.h
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
$NetBSD: patch-ext_io_event_selector_selector.h,v 1.1 2024/02/03 15:22:55 taca Exp $ | ||
|
||
selector.c require WNOHANG from <sys/wait.h>. | ||
|
||
--- ext/io/event/selector/selector.h.orig 2024-01-04 07:49:41.079012504 +0000 | ||
+++ ext/io/event/selector/selector.h | ||
@@ -34,6 +34,7 @@ | ||
#endif | ||
|
||
#include <time.h> | ||
+#include <sys/wait.h> | ||
|
||
enum IO_Event { | ||
IO_EVENT_READABLE = 1, |