[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/07: gnu: emacs-gnugo: Patch 'gnugo-program' variable.
From: |
guix-commits |
Subject: |
03/07: gnu: emacs-gnugo: Patch 'gnugo-program' variable. |
Date: |
Mon, 4 Apr 2022 00:22:09 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit eb4e8a4d9c617ad784b74488783aa07709377440
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Mar 13 21:14:10 2022 -0400
gnu: emacs-gnugo: Patch 'gnugo-program' variable.
* gnu/packages/emacs-xyz.scm (emacs-gnugo)
[phases]{configure-default-gnugo-xpms-variable}: Rename to...
{configure}: ... this. Patch the 'gnugo-program' variable.
[inputs]: Add gnugo.
[description]: Describe basic usage entry points.
---
gnu/packages/emacs-xyz.scm | 26 +++++++++++++++-----------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 42fc13f4c2..167d706c05 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -31,7 +31,7 @@
;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
-;;; Copyright © 2017, 2018, 2019, 2020, 2021 Maxim Cournoyer
<maxim.cournoyer@gmail.com>
+;;; Copyright © 2017, 2018, 2019, 2020, 2021, 2022 Maxim Cournoyer
<maxim.cournoyer@gmail.com>
;;; Copyright © 2018 Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com>
;;; Copyright © 2018, 2019 Mathieu Lirzin <mthl@gnu.org>
;;; Copyright © 2018, 2019, 2020, 2021 Pierre Neidhardt <mail@ambrevar.xyz>
@@ -157,6 +157,7 @@
#:use-module (gnu packages emacs)
#:use-module (gnu packages fonts)
#:use-module (gnu packages freedesktop)
+ #:use-module (gnu packages games)
#:use-module (gnu packages golang)
#:use-module (gnu packages guile)
#:use-module (gnu packages gtk)
@@ -14752,20 +14753,23 @@ on mouse-control.")
"138gzdyi8scqimvs49da66j8f5a43bhgpasn1bxzdj2zffwlwp6g"))))
(build-system emacs-build-system)
(arguments
- `(#:phases (modify-phases %standard-phases
- (add-after 'unpack 'configure-default-gnugo-xpms-variable
- (lambda _
- (substitute* "gnugo.el"
- (("defvar gnugo-xpms nil")
- "defvar gnugo-xpms #'gnugo-imgen-create-xpms"))
- #t)))))
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'configure
+ (lambda* (#:key inputs #:allow-other-keys)
+ (emacs-substitute-variables "gnugo.el"
+ ("gnugo-xpms" "#'gnugo-imgen-create-xpms" (as-display))
+ ("gnugo-program" (search-input-file inputs "/bin/gnugo"))))))))
+ (inputs (list gnugo))
(propagated-inputs
(list emacs-ascii-art-to-unicode emacs-xpm))
(home-page "https://elpa.gnu.org/packages/gnugo.html")
(synopsis "Emacs major mode for playing GNU Go")
- (description "This package provides an Emacs based interface for GNU Go.
-It has a graphical mode where the board and stones are drawn using XPM images
-and supports the use of a mouse.")
+ (description "This package provides an Emacs based interface for GNU Go,
+which can be started via @samp{M-x gnugo}. It has a graphical mode where the
+board and stones are drawn using XPM images and supports the use of a mouse.
+You can switch to the graphical mode by running @samp{M-x
+gnugo-image-display-mode}.")
(license license:gpl3+)))
(define-public emacs-gnuplot
- branch master updated (32b713e016 -> 367048036d), guix-commits, 2022/04/04
- 01/07: import: pypi: Use new style for the conditional unzip input., guix-commits, 2022/04/04
- 02/07: build: emacs-utils: Add a (as-display) subform to `emacs-substitute-variables'., guix-commits, 2022/04/04
- 03/07: gnu: emacs-gnugo: Patch 'gnugo-program' variable.,
guix-commits <=
- 05/07: gnu: emacs-elpy: Update to 1746e70., guix-commits, 2022/04/04
- 06/07: gnu: git: Update to 2.35.1., guix-commits, 2022/04/04
- 04/07: gnu: emacs-poet-theme: Update to 16eb694., guix-commits, 2022/04/04
- 07/07: gnu: stgit: Update to 1.5., guix-commits, 2022/04/04