Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/chess/files: 50chess-gentoo-2.0.4.el
Date: Tue, 28 Apr 2015 14:15:18
Message-Id: 20150428070749.8793899F@oystercatcher.gentoo.org
1 ulm 15/04/28 07:07:48
2
3 Added: 50chess-gentoo-2.0.4.el
4 Log:
5 Version bump.
6
7 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
8
9 Revision Changes Path
10 1.1 app-emacs/chess/files/50chess-gentoo-2.0.4.el
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/chess/files/50chess-gentoo-2.0.4.el?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/chess/files/50chess-gentoo-2.0.4.el?rev=1.1&content-type=text/plain
14
15 Index: 50chess-gentoo-2.0.4.el
16 ===================================================================
17 (add-to-list 'load-path "@SITELISP@")
18
19 (autoload 'chess "chess"
20 "Start a game of chess, playing against ENGINE (a module name)." t)
21 (defalias 'chess-session 'chess)
22 (autoload 'chess-create-display "chess"
23 "Create a display, letting the user's customization decide the style.")
24 (autoload 'chess-link "chess-link"
25 "Play out a game between two engines, and watch the progress." t)
26 (autoload 'chess-pgn-read "chess-pgn"
27 "Read and display a PGN game after point." t)
28 (autoload 'chess-pgn-mode "chess-pgn"
29 "A mode for editing chess PGN files." t)
30 (defalias 'pgn-mode 'chess-pgn-mode)
31 (autoload 'chess-puzzle "chess-puzzle"
32 "Pick a random puzzle from FILE, and solve it against the default engine." t)
33 (autoload 'chess-fischer-random-position "chess-random"
34 "Generate a Fischer Random style position.")
35 (autoload 'chess-tutorial "chess-tutorial"
36 "A simple chess training display." t)
37 (autoload 'chess-ics "chess-ics"
38 "Connect to an Internet Chess Server." t)
39
40 (add-to-list 'auto-mode-alist '("\\.pgn\\'" . chess-pgn-mode))
41
42 (setq chess-images-directory "@SITEETC@/pieces/xboard")
43 (setq chess-sound-directory "@SITEETC@/sounds")
44 (setq chess-eco-hash-table "@SITEETC@/chess-eco.fen")
45 (setq chess-polyglot-book-file "@SITEETC@/chess-polyglot.bin")
46
47 ;; Change the order of the engine preference list to coincide with
48 ;; the order of dependencies in the ebuild. The user can override this
49 ;; using "M-x customize-group RET chess RET".
50 (setq chess-default-engine
51 '(chess-stockfish chess-fruit chess-gnuchess chess-phalanx chess-sjeng
52 chess-crafty chess-ai))