Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/clozurecl/files/, dev-lisp/clozurecl/
Date: Wed, 02 May 2018 19:11:57
Message-Id: 1525288309.c0d6f4fc3b771c5aec12062061ede1f429b494b0.nimiux@gentoo
1 commit: c0d6f4fc3b771c5aec12062061ede1f429b494b0
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 2 19:11:49 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Wed May 2 19:11:49 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c0d6f4fc
7
8 dev-lisp/clozurecl: Drops uneeded patch
9
10 dev-lisp/clozurecl/clozurecl-1.11.5.ebuild | 2 +-
11 dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch | 41 ----------------------
12 2 files changed, 1 insertion(+), 42 deletions(-)
13
14 diff --git a/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild b/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
15 index 7eeebd9c..63a93582 100644
16 --- a/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
17 +++ b/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
18 @@ -1,4 +1,4 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 +# Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 EAPI=6
24
25 diff --git a/dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch b/dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch
26 deleted file mode 100644
27 index 3a9bdf64..00000000
28 --- a/dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch
29 +++ /dev/null
30 @@ -1,41 +0,0 @@
31 -diff -U2 -r ccl.orig/lisp-kernel/platform-linuxx8632.h ccl/lisp-kernel/platform-linuxx8632.h
32 ---- ccl.orig/lisp-kernel/platform-linuxx8632.h 2015-11-07 02:10:11.000000000 +0600
33 -+++ ccl/lisp-kernel/platform-linuxx8632.h 2017-11-21 23:50:31.630113003 +0700
34 -@@ -21,5 +21,7 @@
35 - #define PLATFORM_WORD_SIZE PLATFORM_WORD_SIZE_32
36 -
37 --typedef struct ucontext ExceptionInformation;
38 -+#include <ucontext.h>
39 -+
40 -+typedef ucontext_t ExceptionInformation;
41 -
42 - #define MAXIMUM_MAPPABLE_MEMORY (9U<<28)
43 -diff -U2 -r ccl.orig/lisp-kernel/platform-linuxx8664.h ccl/lisp-kernel/platform-linuxx8664.h
44 ---- ccl.orig/lisp-kernel/platform-linuxx8664.h 2015-11-07 02:10:11.000000000 +0600
45 -+++ ccl/lisp-kernel/platform-linuxx8664.h 2017-11-21 23:51:44.693114350 +0700
46 -@@ -21,5 +21,7 @@
47 - #define PLATFORM_WORD_SIZE PLATFORM_WORD_SIZE_64
48 -
49 --typedef struct ucontext ExceptionInformation;
50 -+#include <ucontext.h>
51 -+
52 -+typedef ucontext_t ExceptionInformation;
53 -
54 - #define MAXIMUM_MAPPABLE_MEMORY (512L<<30L)
55 -diff -U2 -r ccl.orig/lisp-kernel/x86-exceptions.c ccl/lisp-kernel/x86-exceptions.c
56 ---- ccl.orig/lisp-kernel/x86-exceptions.c 2015-11-07 02:10:11.000000000 +0600
57 -+++ ccl/lisp-kernel/x86-exceptions.c 2017-11-21 23:55:00.816117965 +0700
58 -@@ -1678,5 +1678,5 @@
59 - void *puc;
60 - siginfo_t info;
61 -- struct ucontext uc;
62 -+ ucontext_t uc;
63 - struct _fpstate fpstate;
64 - char retcode[8];
65 -@@ -2426,5 +2426,5 @@
66 - change copy_ucontext().
67 - */
68 -- stack.ss_size -= sizeof(struct ucontext);
69 -+ stack.ss_size -= sizeof(ucontext_t);
70 - #endif
71 - if (sigaltstack(&stack, NULL) != 0) {