Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/posix-spawn/files/
Date: Fri, 07 Aug 2020 04:27:29
Message-Id: 1596774401.656c0158bf0eca0ffa1630773a32bf90e134f5fb.graaff@gentoo
1 commit: 656c0158bf0eca0ffa1630773a32bf90e134f5fb
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Aug 3 16:58:28 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 7 04:26:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=656c0158
7
8 dev-ruby/posix-spawn: remove unused patch(es)
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
13
14 .../posix-spawn/files/posix-spawn-0.3.13-x86.patch | 23 ----------------------
15 1 file changed, 23 deletions(-)
16
17 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
18 deleted file mode 100644
19 index b96579b1828..00000000000
20 --- a/dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch
21 +++ /dev/null
22 @@ -1,23 +0,0 @@
23 -From 5201e921a788fbb97f14ea0c617a2213dc3da1ca Mon Sep 17 00:00:00 2001
24 -From: Pascal Terjan <pterjan@××××××.com>
25 -Date: Sun, 20 Aug 2017 12:13:15 +0100
26 -Subject: [PATCH] Fix build when SIZEOF_INT == SIZEOF_LONG
27 -
28 -Signed-off-by: Aman Gupta <aman@××××.net>
29 ----
30 - ext/posix-spawn.c | 2 +-
31 - 1 file changed, 1 insertion(+), 1 deletion(-)
32 -
33 -diff --git a/ext/posix-spawn.c b/ext/posix-spawn.c
34 -index 1659bed..2e4c4de 100644
35 ---- a/ext/posix-spawn.c
36 -+++ b/ext/posix-spawn.c
37 -@@ -61,7 +61,7 @@ posixspawn_obj_to_fd(VALUE obj)
38 - * rb_fix2int takes care of raising if the provided object is a
39 - * Bignum and is out of range of an int
40 - */
41 -- fd = (int)rb_fix2int(obj);
42 -+ fd = FIX2INT(obj);
43 - break;
44 -
45 - case T_SYMBOL: