commit:     743b5e91b036b046d0e3ba8047a838993acdb7a9
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail 
<DOT> com>
AuthorDate: Sat Aug  6 14:49:34 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Nov  6 19:31:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=743b5e91

dev-lang/gforth: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/2167

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch  | 30 ------------------
 .../gforth/files/0.6.2-ppc-configure-gentoo.patch  | 13 --------
 dev-lang/gforth/files/gforth.el-gentoo.patch       | 37 ----------------------
 3 files changed, 80 deletions(-)

diff --git a/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch 
b/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch
deleted file mode 100644
index 28ab2e5..00000000
--- a/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Index: engine/main.c
-===================================================================
-RCS file: /usr/local/lib/cvs-repository/src-master/gforth/engine/main.c,v
-retrieving revision 1.139
-retrieving revision 1.140
-diff -u -r1.139 -r1.140
---- engine/main.c.old  2004/01/20 19:07:41     1.139
-+++ engine/main.c      2004/04/10 00:16:55     1.140
-@@ -70,8 +70,21 @@
- 
- void engine_callback(Xt* fcall, void * alist)
- {
-+  /* save global valiables */
-+  Cell *rp = RP;
-+  Cell *sp = SP;
-+  Float *fp = FP;
-+  Address lp = LP;
-+
-   clist = (va_alist)alist;
--  engine(fcall, SP, RP, FP, LP);
-+
-+  engine(fcall, sp, rp, fp, lp);
-+
-+  /* restore global variables */
-+  RP = rp;
-+  SP = sp;
-+  FP = fp;
-+  LP = lp;
- }
- #endif
\ No newline at end of file

diff --git a/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch 
b/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch
deleted file mode 100644
index 30061aa..00000000
--- a/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -ur gforth-0.6.2.orig/configure gforth-0.6.2/configure
---- gforth-0.6.2.orig/configure        2003-08-25 03:03:42.000000000 -0500
-+++ gforth-0.6.2/configure     2006-05-12 15:10:52.000000000 -0500
-@@ -3586,7 +3586,8 @@
- fi
- 
-               #long long is broken on (at least) gcc-2.95.* for PPC
--              test x$ac_cv_sizeof_long_long = x && ac_cv_sizeof_long_long=0
-+              # XXX this was fixed long ago
-+#             test x$ac_cv_sizeof_long_long = x && ac_cv_sizeof_long_long=0
-               ;;
-       *)
-               { echo "$as_me:$LINENO: WARNING: Using a generic machine 
description" >&5

diff --git a/dev-lang/gforth/files/gforth.el-gentoo.patch 
b/dev-lang/gforth/files/gforth.el-gentoo.patch
deleted file mode 100644
index cc98537..00000000
--- a/dev-lang/gforth/files/gforth.el-gentoo.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- gforth-0.6.2-orig/gforth.el        2003-08-05 11:12:47.000000000 +0200
-+++ gforth-0.6.2/gforth.el     2008-09-06 08:29:44.000000000 +0200
-@@ -61,9 +61,10 @@
-       (progn (string-match "^[0-9]+" emacs-version)
-            (string-to-int (match-string 0 emacs-version)))))
- 
--(defun forth-emacs-older (major minor)
--  (or (< emacs-major-version major)
--      (and (= emacs-major-version major) (< emacs-minor-version minor))))
-+(eval-when-compile 
-+  (defun forth-emacs-older (major minor)
-+    (or (< emacs-major-version major)
-+      (and (= emacs-major-version major) (< emacs-minor-version minor)))))
- 
- ;; Code ripped from `subr.el' for compatability with Emacs versions
- ;; prior to 20.1
-@@ -79,8 +80,9 @@
- 
- ;; `no-error' argument of require not supported in Emacs versions
- ;; prior to 20.4 :-(
--(defun forth-require (feature)
--  (condition-case err (require feature) (error nil)))
-+(eval-and-compile
-+  (defun forth-require (feature)
-+    (condition-case err (require feature) (error nil))))
- 
- (require 'font-lock)
- 
-@@ -1702,6 +1704,6 @@
-         (error "No current process.  See variable `forth-process-buffer'"))))
-   )  ; (memq 'comint features)
- 
--(provide 'forth-mode)
-+(provide 'gforth)
- 
- ;;; gforth.el ends here
-

Reply via email to