Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nativebiginteger/files/
Date: Sun, 13 Sep 2020 00:44:08
Message-Id: 1599957837.458bf42448b5f431a1a9a14b4b3fa3b2ee35d445.sam@gentoo
1 commit: 458bf42448b5f431a1a9a14b4b3fa3b2ee35d445
2 Author: tharvik <tharvik <AT> users <DOT> noreply <DOT> github <DOT> com>
3 AuthorDate: Mon Aug 31 23:08:06 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 13 00:43:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=458bf424
7
8 net-libs/nativebiginteger: drop old patch
9
10 Closes: https://bugs.gentoo.org/728808
11 Package-Manager: Portage-3.0.4, Repoman-2.3.23
12 Signed-off-by: Valérian Rousset <tharvik <AT> users.noreply.github.com>
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 .../files/nativebiginteger-0.9.36-asmfix.patch | 31 ----------------------
16 1 file changed, 31 deletions(-)
17
18 diff --git a/net-libs/nativebiginteger/files/nativebiginteger-0.9.36-asmfix.patch b/net-libs/nativebiginteger/files/nativebiginteger-0.9.36-asmfix.patch
19 deleted file mode 100644
20 index cdb8c7f64cb..00000000000
21 --- a/net-libs/nativebiginteger/files/nativebiginteger-0.9.36-asmfix.patch
22 +++ /dev/null
23 @@ -1,31 +0,0 @@
24 ---- c/jcpuid/src/jcpuid.c 2008-10-06 09:44:53.000000000 -0400
25 -+++ c/jcpuid/src/jcpuid.c.new2 2010-12-27 09:41:53.000000000 -0500
26 -@@ -19,6 +19,7 @@
27 - mov d, edx
28 - }
29 - #else
30 -+ #ifdef _LP64
31 - //Use GCC assembler notation
32 - asm
33 - (
34 -@@ -29,6 +30,20 @@
35 - "=d"(d)
36 - :"a"(iFunction)
37 - );
38 -+ #elif defined(__i386__)
39 -+ asm
40 -+ (
41 -+ "pushl %%ebx\n\t"
42 -+ "cpuid\n\t"
43 -+ "movl %%ebx, %%edi\n\t"
44 -+ "popl %%ebx"
45 -+ : "=a" (a),
46 -+ "=D" (b),
47 -+ "=c" (c),
48 -+ "=d" (d)
49 -+ :"a"(iFunction)
50 -+ );
51 -+ #endif
52 - #endif
53 - return (*env)->NewObject(env, clsResult,constructor,a,b,c,d);
54 - }