[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-google-maps: Update to 20181121.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-google-maps: Update to 20181121. |
Date: |
Sun, 04 Oct 2020 15:00:00 -0400 |
This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 435e5e2 gnu: emacs-google-maps: Update to 20181121.
435e5e2 is described below
commit 435e5e27742eb71796be8a73be7a6549fd5e9582
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Oct 4 14:56:21 2020 -0400
gnu: emacs-google-maps: Update to 20181121.
Fixes <https://issues.guix.gnu.org/38854>.
* gnu/packages/emacs-xyz.scm (emacs-google-maps): Update to 20181121.
---
gnu/packages/emacs-xyz.scm | 39 +++++++++++++++++++++------------------
1 file changed, 21 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 358a434..4894e20 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2318,24 +2318,27 @@ written in the Go programming language.")
(license license:bsd-3)))
(define-public emacs-google-maps
- (package
- (name "emacs-google-maps")
- (version "1.0.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/jd/google-maps.el")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"))))
- (build-system emacs-build-system)
- (home-page "https://github.com/jd/google-maps.el")
- (synopsis "Access Google Maps from Emacs")
- (description "The @code{google-maps} package displays Google
-Maps directly inside Emacs.")
- (license license:gpl3+)))
+ (let ((version "20181121") ;no release tag since 2013
+ (commit "2eb16ff609f5a9f8d02c15238a111fbb7db6c146")
+ (revision "1"))
+ (package
+ (name "emacs-google-maps")
+ (version (git-version version revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jd/google-maps.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1bl0dnksbf14d0xcnvdy9qpvzc5c8jwkxpmfvgayj6djikxnw2md"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/jd/google-maps.el")
+ (synopsis "Access Google Maps from Emacs")
+ (description "The @code{google-maps} package displays Google Maps
+directly inside Emacs. It requires a Google Map Static API key to function.")
+ (license license:gpl3+))))
(define-public emacs-graphviz-dot-mode
(package
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-google-maps: Update to 20181121.,
guix-commits <=