[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/20: gnu: mg: Update to 20180408.
From: |
Tobias Geerinckx-Rice |
Subject: |
20/20: gnu: mg: Update to 20180408. |
Date: |
Thu, 26 Apr 2018 15:09:48 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit a4d8b386ac9b44ac08bdedf4dcb4b7becef4df53
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Thu Apr 26 19:25:50 2018 +0200
gnu: mg: Update to 20180408.
* gnu/packages/text-editors.scm (mg): Update to 20180408.
[source]: Switch from discontinued proper releases to a git tag.
---
gnu/packages/text-editors.scm | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 0e65394..d12e3d7 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -237,14 +237,16 @@ Wordstar-, EMACS-, Pico, Nedit or vi-like key bindings.
e3 can be used on
(define-public mg
(package
(name "mg")
- (version "20171014")
+ (version "20180408")
(source (origin
- (method url-fetch)
- (uri (string-append "https://homepage.boetes.org/software/mg/mg-"
- version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hboetes/mg")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0hakfikzsml7z0hja8m8mcahrmfy2piy81bq9nccsjplyfc9clai"))
+ "06w86xk7sjl2x2h3z6msn8kpmwj05qdimcym77wzhz5s94dzh1bl"))
(modules '((guix build utils)))
(snippet
'(begin
@@ -262,7 +264,7 @@ Wordstar-, EMACS-, Pico, Nedit or vi-like key bindings. e3
can be used on
#:make-flags (list (string-append "prefix=" %output)
"CC=gcc")
#:phases (modify-phases %standard-phases
- (delete 'configure)
+ (delete 'configure) ; no configure script
(add-before 'build 'correct-location-of-difftool
(lambda _
(substitute* "buffer.c"
- 11/20: gnu: perl-mime-types: Update to 2.17., (continued)
- 11/20: gnu: perl-mime-types: Update to 2.17., Tobias Geerinckx-Rice, 2018/04/26
- 13/20: gnu: perl-task-weaken: Update to 1.06., Tobias Geerinckx-Rice, 2018/04/26
- 14/20: gnu: perl-text-glob: Update to 0.11., Tobias Geerinckx-Rice, 2018/04/26
- 09/20: gnu: perl-devel-overloadinfo: Update to 0.005., Tobias Geerinckx-Rice, 2018/04/26
- 15/20: gnu: openvpn: Update to 2.4.6., Tobias Geerinckx-Rice, 2018/04/26
- 17/20: gnu: ghostwriter: Update to 1.6.2., Tobias Geerinckx-Rice, 2018/04/26
- 12/20: gnu: perl-module-find: Update to 0.13., Tobias Geerinckx-Rice, 2018/04/26
- 19/20: gnu: mg: Find ncurses through pkg-config., Tobias Geerinckx-Rice, 2018/04/26
- 16/20: gnu: youtube-viewer: Update to 3.3.4., Tobias Geerinckx-Rice, 2018/04/26
- 18/20: gnu: fio: Use INVOKE., Tobias Geerinckx-Rice, 2018/04/26
- 20/20: gnu: mg: Update to 20180408.,
Tobias Geerinckx-Rice <=