summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2018-02-04 21:47:58 +0100
committerUlrich Müller <ulm@gentoo.org>2018-02-04 21:54:03 +0100
commitf43e6344a10ad3f127b124227b84f5b75f23d11c (patch)
treef1b92e3eb3386ffda45598191b8e0f8440789bac /app-emacs/chess/files
parentapp-misc/linux-logo: stable 5.11-r4 for hppa, bug #646442 (diff)
downloadgentoo-f43e6344a10ad3f127b124227b84f5b75f23d11c.tar.gz
gentoo-f43e6344a10ad3f127b124227b84f5b75f23d11c.tar.bz2
gentoo-f43e6344a10ad3f127b124227b84f5b75f23d11c.zip
app-emacs/chess: Remove old.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'app-emacs/chess/files')
-rw-r--r--app-emacs/chess/files/2.0_beta6-chess-common-handler-gentoo.patch18
-rw-r--r--app-emacs/chess/files/2.0_beta6-chess-pos-move-gentoo.patch12
-rw-r--r--app-emacs/chess/files/2.0_beta6-texinfo-5.patch14
-rw-r--r--app-emacs/chess/files/50chess-gentoo.el33
4 files changed, 0 insertions, 77 deletions
diff --git a/app-emacs/chess/files/2.0_beta6-chess-common-handler-gentoo.patch b/app-emacs/chess/files/2.0_beta6-chess-common-handler-gentoo.patch
deleted file mode 100644
index 0fd1e8c28264..000000000000
--- a/app-emacs/chess/files/2.0_beta6-chess-common-handler-gentoo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- chess-orig/chess-common.el 2007-12-14 21:54:58.000000000 +0100
-+++ chess/chess-common.el 2008-03-14 21:11:56.000000000 +0100
-@@ -41,10 +41,11 @@
- (chess-message 'starting-engine name)
- (unless (boundp path)
- (chess-error 'could-not-find-engine name path))
-- (setq proc (start-process (concat "chess-" name)
-- (current-buffer) (symbol-value path)))
-- (chess-message 'starting-engine-done name)
-- proc))
-+ (when (symbol-value path)
-+ (setq proc (start-process (concat "chess-" name)
-+ (current-buffer) (symbol-value path)))
-+ (chess-message 'starting-engine-done name)
-+ proc)))
-
- ((eq event 'ready)
- (chess-game-set-data game 'active t)
diff --git a/app-emacs/chess/files/2.0_beta6-chess-pos-move-gentoo.patch b/app-emacs/chess/files/2.0_beta6-chess-pos-move-gentoo.patch
deleted file mode 100644
index fe7a31ba1222..000000000000
--- a/app-emacs/chess/files/2.0_beta6-chess-pos-move-gentoo.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- chess-orig/chess-pos.el 2004-02-18 18:53:26.000000000 +0100
-+++ chess/chess-pos.el 2007-09-24 11:04:39.000000000 +0200
-@@ -595,7 +595,8 @@
- trying to move a blank square."
- (assert (vectorp position))
- (assert (listp changes))
-- (assert (> (length changes) 0))
-+ ;; this fails for the start position in chess-opening
-+ ;;(assert (> (length changes) 0))
-
- ;; apply the piece movements listed in `changes'
- (let ((ch changes))
diff --git a/app-emacs/chess/files/2.0_beta6-texinfo-5.patch b/app-emacs/chess/files/2.0_beta6-texinfo-5.patch
deleted file mode 100644
index 285d976ceff8..000000000000
--- a/app-emacs/chess/files/2.0_beta6-texinfo-5.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- chess-orig/chess.texi
-+++ chess/chess.texi
-@@ -44,9 +44,9 @@
- @sp 4
- @c The title is printed in a large font.
- @center @titlefont{User's Guide}
--@sp
-+@sp 1
- @center @titlefont{to}
--@sp
-+@sp 1
- @center @titlefont{Emacs Chess: chess.el}
- @ignore
- @sp 2
diff --git a/app-emacs/chess/files/50chess-gentoo.el b/app-emacs/chess/files/50chess-gentoo.el
deleted file mode 100644
index 3aee961e25bc..000000000000
--- a/app-emacs/chess/files/50chess-gentoo.el
+++ /dev/null
@@ -1,33 +0,0 @@
-(add-to-list 'load-path "@SITELISP@")
-
-(autoload 'chess "chess"
- "Start a game of chess, playing against ENGINE (a module name)." t)
-(defalias 'chess-session 'chess)
-(autoload 'chess-create-display "chess"
- "Create a display, letting the user's customization decide the style.")
-(autoload 'chess-link "chess-link"
- "Play out a game between two engines, and watch the progress." t)
-(autoload 'chess-pgn-read "chess-pgn"
- "Read and display a PGN game after point." t)
-(autoload 'chess-pgn-mode "chess-pgn"
- "A mode for editing chess PGN files." t)
-(defalias 'pgn-mode 'chess-pgn-mode)
-(autoload 'chess-puzzle "chess-puzzle"
- "Pick a random puzzle from FILE, and solve it against the default engine." t)
-(autoload 'chess-fischer-random-position "chess-random"
- "Generate a Fischer Random style position.")
-(autoload 'chess-tutorial "chess-tutorial"
- "A simple chess training display." t)
-(autoload 'chess-ics "chess-ics"
- "Connect to an Internet Chess Server." t)
-
-(add-to-list 'auto-mode-alist '("\\.pgn\\'" . chess-pgn-mode))
-
-(setq chess-images-directory "@SITEETC@/pieces/xboard")
-(setq chess-sound-directory "@SITEETC@/sounds")
-
-;; Change the order of the engine preference list to coincide with the order
-;; of our dependencies: games-board/gnuchess, crafty, phalanx, and sjeng.
-;; The user can override this using M-x customize-group RET chess RET
-(setq chess-default-engine
- '(chess-gnuchess chess-crafty chess-phalanx chess-sjeng))