Gentoo Archives: gentoo-commits

From: Ian Stakenvicius <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/seamonkey/files/
Date: Tue, 06 Oct 2015 17:21:15
Message-Id: 1444152054.c452254fa7b71f33534d588070ea5fbc9720fb96.axs@gentoo
1 commit: c452254fa7b71f33534d588070ea5fbc9720fb96
2 Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 6 17:18:17 2015 +0000
4 Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 6 17:20:54 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c452254f
7
8 www-client/seamonkey: cleanup unused patch files
9
10 Package-Manager: portage-2.2.20.1
11
12 .../firefox-38-dont-hardcode-libc-soname.patch | 22 ----------------
13 .../files/firefox-38-hppa-js-syntax-error.patch | 30 ----------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/www-client/seamonkey/files/firefox-38-dont-hardcode-libc-soname.patch b/www-client/seamonkey/files/firefox-38-dont-hardcode-libc-soname.patch
17 deleted file mode 100644
18 index 83779bc..0000000
19 --- a/www-client/seamonkey/files/firefox-38-dont-hardcode-libc-soname.patch
20 +++ /dev/null
21 @@ -1,22 +0,0 @@
22 ---- a/testing/mozbase/mozinfo/mozinfo/mozinfo.py 2015-08-06 13:41:02.000000000 -0400
23 -+++ b/testing/mozbase/mozinfo/mozinfo/mozinfo.py 2015-08-21 21:17:00.320766493 -0400
24 -@@ -96,7 +96,7 @@
25 - import errno
26 - PR_SET_SECCOMP = 22
27 - SECCOMP_MODE_FILTER = 2
28 -- ctypes.CDLL("libc.so.6", use_errno=True).prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, 0)
29 -+ ctypes.CDLL(ctypes.util.find_library('c'), use_errno=True).prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, 0)
30 - info['has_sandbox'] = ctypes.get_errno() == errno.EFAULT
31 - else:
32 - info['has_sandbox'] = True
33 ---- a/testing/mochitest/runtests.py 2015-08-06 13:41:02.000000000 -0400
34 -+++ b/testing/mochitest/runtests.py 2015-08-21 21:17:36.060766000 -0400
35 -@@ -1097,7 +1097,7 @@
36 - if not mozinfo.isLinux:
37 - return False, ''
38 -
39 -- libc = ctypes.cdll.LoadLibrary('libc.so.6')
40 -+ libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c'))
41 - O_RDWR = 2
42 - # These are from linux/videodev2.h
43 -
44
45 diff --git a/www-client/seamonkey/files/firefox-38-hppa-js-syntax-error.patch b/www-client/seamonkey/files/firefox-38-hppa-js-syntax-error.patch
46 deleted file mode 100644
47 index 719732e..0000000
48 --- a/www-client/seamonkey/files/firefox-38-hppa-js-syntax-error.patch
49 +++ /dev/null
50 @@ -1,30 +0,0 @@
51 -# HG changeset patch
52 -# User Ian Stakenvicius <axs@g.o>
53 -# Parent 2ee9895e032c492705adaf213706d4260ca172c8
54 -Fix JS_CHECK_STACK_SIZE define for stack-growing-up case (hppa)
55 -
56 -Upstream bug 1189011
57 -Gentoo bug 556196
58 -
59 -diff --git a/js/src/jsfriendapi.h b/js/src/jsfriendapi.h
60 ---- a/js/src/jsfriendapi.h
61 -+++ b/js/src/jsfriendapi.h
62 -@@ -15,17 +15,17 @@
63 - #include "jsbytecode.h"
64 - #include "jspubtd.h"
65 -
66 - #include "js/CallArgs.h"
67 - #include "js/CallNonGenericMethod.h"
68 - #include "js/Class.h"
69 -
70 - #if JS_STACK_GROWTH_DIRECTION > 0
71 --# define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY(((uintptr_t)(sp) < (limit)))
72 -+# define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY((uintptr_t)(sp) < (limit)))
73 - #else
74 - # define JS_CHECK_STACK_SIZE(limit, sp) (MOZ_LIKELY((uintptr_t)(sp) > (limit)))
75 - #endif
76 -
77 - class JSAtom;
78 - struct JSErrorFormatString;
79 - class JSLinearString;
80 - struct JSJitInfo;