commit: c0d6f4fc3b771c5aec12062061ede1f429b494b0
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Wed May 2 19:11:49 2018 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Wed May 2 19:11:49 2018 +0000
URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c0d6f4fc
dev-lisp/clozurecl: Drops uneeded patch
dev-lisp/clozurecl/clozurecl-1.11.5.ebuild | 2 +-
dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch | 41 ----------------------
2 files changed, 1 insertion(+), 42 deletions(-)
diff --git a/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
b/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
index 7eeebd9c..63a93582 100644
--- a/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
+++ b/dev-lisp/clozurecl/clozurecl-1.11.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
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
deleted file mode 100644
index 3a9bdf64..00000000
--- a/dev-lisp/clozurecl/files/ccl-1.11-glibc-2.26.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-diff -U2 -r ccl.orig/lisp-kernel/platform-linuxx8632.h
ccl/lisp-kernel/platform-linuxx8632.h
---- ccl.orig/lisp-kernel/platform-linuxx8632.h 2015-11-07 02:10:11.000000000
+0600
-+++ ccl/lisp-kernel/platform-linuxx8632.h 2017-11-21 23:50:31.630113003
+0700
-@@ -21,5 +21,7 @@
- #define PLATFORM_WORD_SIZE PLATFORM_WORD_SIZE_32
-
--typedef struct ucontext ExceptionInformation;
-+#include <ucontext.h>
-+
-+typedef ucontext_t ExceptionInformation;
-
- #define MAXIMUM_MAPPABLE_MEMORY (9U<<28)
-diff -U2 -r ccl.orig/lisp-kernel/platform-linuxx8664.h
ccl/lisp-kernel/platform-linuxx8664.h
---- ccl.orig/lisp-kernel/platform-linuxx8664.h 2015-11-07 02:10:11.000000000
+0600
-+++ ccl/lisp-kernel/platform-linuxx8664.h 2017-11-21 23:51:44.693114350
+0700
-@@ -21,5 +21,7 @@
- #define PLATFORM_WORD_SIZE PLATFORM_WORD_SIZE_64
-
--typedef struct ucontext ExceptionInformation;
-+#include <ucontext.h>
-+
-+typedef ucontext_t ExceptionInformation;
-
- #define MAXIMUM_MAPPABLE_MEMORY (512L<<30L)
-diff -U2 -r ccl.orig/lisp-kernel/x86-exceptions.c
ccl/lisp-kernel/x86-exceptions.c
---- ccl.orig/lisp-kernel/x86-exceptions.c 2015-11-07 02:10:11.000000000
+0600
-+++ ccl/lisp-kernel/x86-exceptions.c 2017-11-21 23:55:00.816117965 +0700
-@@ -1678,5 +1678,5 @@
- void *puc;
- siginfo_t info;
-- struct ucontext uc;
-+ ucontext_t uc;
- struct _fpstate fpstate;
- char retcode[8];
-@@ -2426,5 +2426,5 @@
- change copy_ucontext().
- */
-- stack.ss_size -= sizeof(struct ucontext);
-+ stack.ss_size -= sizeof(ucontext_t);
- #endif
- if (sigaltstack(&stack, NULL) != 0) {