summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-08-03 18:58:28 +0200
committerHans de Graaff <graaff@gentoo.org>2020-08-07 06:26:41 +0200
commit656c0158bf0eca0ffa1630773a32bf90e134f5fb (patch)
tree5a627030dcbd9bb678b1c214f6a40400eacb9d40 /dev-ruby
parentdev-db/mysql: Stabilize 8.0.21 arm64, #732974 (diff)
downloadgentoo-656c0158bf0eca0ffa1630773a32bf90e134f5fb.tar.gz
gentoo-656c0158bf0eca0ffa1630773a32bf90e134f5fb.tar.bz2
gentoo-656c0158bf0eca0ffa1630773a32bf90e134f5fb.zip
dev-ruby/posix-spawn: remove unused patch(es)
Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch b/dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch
deleted file mode 100644
index b96579b18281..000000000000
--- a/dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 5201e921a788fbb97f14ea0c617a2213dc3da1ca Mon Sep 17 00:00:00 2001
-From: Pascal Terjan <pterjan@google.com>
-Date: Sun, 20 Aug 2017 12:13:15 +0100
-Subject: [PATCH] Fix build when SIZEOF_INT == SIZEOF_LONG
-
-Signed-off-by: Aman Gupta <aman@tmm1.net>
----
- ext/posix-spawn.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/ext/posix-spawn.c b/ext/posix-spawn.c
-index 1659bed..2e4c4de 100644
---- a/ext/posix-spawn.c
-+++ b/ext/posix-spawn.c
-@@ -61,7 +61,7 @@ posixspawn_obj_to_fd(VALUE obj)
- * rb_fix2int takes care of raising if the provided object is a
- * Bignum and is out of range of an int
- */
-- fd = (int)rb_fix2int(obj);
-+ fd = FIX2INT(obj);
- break;
-
- case T_SYMBOL: