unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] emacs: Add 'guix-version' command.
@ 2016-04-21  7:46 Alex Kost
  2016-04-25 22:06 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Kost @ 2016-04-21  7:46 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 313 bytes --]

There are "M-x emacs-version", "M-x org-version", "M-x magit-version",
etc.  So there should be "M-x guix-version"!

I named the file "guix-about.el" because sooner or later there should
appear "M-x guix-about" command that will display a fancy splash screen
similar to the one you see after pressing "C-h C-a".


[-- Attachment #2: 0001-emacs-Add-guix-version-command.patch --]
[-- Type: text/x-patch, Size: 3055 bytes --]

From 73a231e171ee19baf7ea4c6d96da446833fb4b74 Mon Sep 17 00:00:00 2001
From: Alex Kost <alezost@gmail.com>
Date: Wed, 20 Apr 2016 19:27:44 +0300
Subject: [PATCH] emacs: Add 'guix-version' command.

* emacs/guix-config.el.in (guix-config-name, guix-config-version): New
  constants.
* emacs/guix-about.el (guix-version): New command.  New file.
* emacs.am (ELFILES): Add it.
---
 emacs.am                |  1 +
 emacs/guix-about.el     | 37 +++++++++++++++++++++++++++++++++++++
 emacs/guix-config.el.in |  8 +++++++-
 3 files changed, 45 insertions(+), 1 deletion(-)
 create mode 100644 emacs/guix-about.el

diff --git a/emacs.am b/emacs.am
index 62e33e4..f83063c 100644
--- a/emacs.am
+++ b/emacs.am
@@ -20,6 +20,7 @@
 AUTOLOADS = emacs/guix-autoloads.el
 
 ELFILES =					\
+  emacs/guix-about.el				\
   emacs/guix-backend.el				\
   emacs/guix-base.el				\
   emacs/guix-build-log.el			\
diff --git a/emacs/guix-about.el b/emacs/guix-about.el
new file mode 100644
index 0000000..27a79fe
--- /dev/null
+++ b/emacs/guix-about.el
@@ -0,0 +1,37 @@
+;;; guix-about.el --- Various info about Guix
+
+;; Copyright © 2016 Alex Kost <alezost@gmail.com>
+
+;; This file is part of GNU Guix.
+
+;; GNU Guix is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public Location as published by
+;; the Free Software Foundation, either version 3 of the Location, or
+;; (at your option) any later version.
+
+;; GNU Guix is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public Location for more details.
+
+;; You should have received a copy of the GNU General Public Location
+;; along with this program.  If not, see <http://www.gnu.org/locations/>.
+
+;;; Commentary:
+
+;; This file provides the code to display various info about Guix (e.g., its
+;; version).
+
+;;; Code:
+
+(require 'guix-config)
+
+;;;###autoload
+(defun guix-version ()
+  "Display Guix version in the echo area."
+  (interactive)
+  (message "%s %s" guix-config-name guix-config-version))
+
+(provide 'guix-about)
+
+;;; guix-about.el ends here
diff --git a/emacs/guix-config.el.in b/emacs/guix-config.el.in
index bd82159..6c0a1c2 100644
--- a/emacs/guix-config.el.in
+++ b/emacs/guix-config.el.in
@@ -1,7 +1,7 @@
 ;;; guix-config.el --- Compile-time configuration of Guix.
 
 ;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
-;; Copyright © 2015 Alex Kost <alezost@gmail.com>
+;; Copyright © 2015, 2016 Alex Kost <alezost@gmail.com>
 
 ;; This file is part of GNU Guix.
 
@@ -20,6 +20,12 @@
 
 ;;; Code:
 
+(defconst guix-config-name "@PACKAGE_NAME@"
+  "Guix full name.")
+
+(defconst guix-config-version "@PACKAGE_VERSION@"
+  "Guix version.")
+
 (defconst guix-config-emacs-interface-directory
   (replace-regexp-in-string "${prefix}" "@prefix@" "@emacsuidir@"))
 
-- 
2.7.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] emacs: Add 'guix-version' command.
  2016-04-21  7:46 [PATCH] emacs: Add 'guix-version' command Alex Kost
@ 2016-04-25 22:06 ` Ludovic Courtès
  2016-04-26  9:55   ` Alex Kost
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2016-04-25 22:06 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel

Alex Kost <alezost@gmail.com> skribis:

> There are "M-x emacs-version", "M-x org-version", "M-x magit-version",
> etc.  So there should be "M-x guix-version"!

At last!  :-)

> I named the file "guix-about.el" because sooner or later there should
> appear "M-x guix-about" command that will display a fancy splash screen
> similar to the one you see after pressing "C-h C-a".

Of course.

> From 73a231e171ee19baf7ea4c6d96da446833fb4b74 Mon Sep 17 00:00:00 2001
> From: Alex Kost <alezost@gmail.com>
> Date: Wed, 20 Apr 2016 19:27:44 +0300
> Subject: [PATCH] emacs: Add 'guix-version' command.
>
> * emacs/guix-config.el.in (guix-config-name, guix-config-version): New
>   constants.
> * emacs/guix-about.el (guix-version): New command.  New file.
> * emacs.am (ELFILES): Add it.

[...]

> +(defun guix-version ()
> +  "Display Guix version in the echo area."
> +  (interactive)
> +  (message "%s %s" guix-config-name guix-config-version))

It would be interested to also display the value of ‘%guix-version’ on
the Scheme side, though maybe it should be a separate command, or maybe
no command at all after all?

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] emacs: Add 'guix-version' command.
  2016-04-25 22:06 ` Ludovic Courtès
@ 2016-04-26  9:55   ` Alex Kost
  0 siblings, 0 replies; 3+ messages in thread
From: Alex Kost @ 2016-04-26  9:55 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel

Ludovic Courtès (2016-04-26 01:06 +0300) wrote:

> Alex Kost <alezost@gmail.com> skribis:
>
>> From 73a231e171ee19baf7ea4c6d96da446833fb4b74 Mon Sep 17 00:00:00 2001
>> From: Alex Kost <alezost@gmail.com>
>> Date: Wed, 20 Apr 2016 19:27:44 +0300
>> Subject: [PATCH] emacs: Add 'guix-version' command.
>>
>> * emacs/guix-config.el.in (guix-config-name, guix-config-version): New
>>   constants.
>> * emacs/guix-about.el (guix-version): New command.  New file.
>> * emacs.am (ELFILES): Add it.
>
> [...]
>
>> +(defun guix-version ()
>> +  "Display Guix version in the echo area."
>> +  (interactive)
>> +  (message "%s %s" guix-config-name guix-config-version))
>
> It would be interested to also display the value of ‘%guix-version’ on
> the Scheme side, though maybe it should be a separate command, or maybe
> no command at all after all?

Hm, sorry, I didn't get it.  Do you mean '%guix-version' from (guix
config) module?  But it would be the same, as both 'guix-config-version'
(proposed by this patch) and '%guix-version' from the Scheme side are
set to "@PACKAGE_VERSION@".  What do you mean?

-- 
Alex

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-04-26  9:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-21  7:46 [PATCH] emacs: Add 'guix-version' command Alex Kost
2016-04-25 22:06 ` Ludovic Courtès
2016-04-26  9:55   ` Alex Kost

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).