guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: emacs-peg: Update to 1.0.


From: guix-commits
Subject: branch master updated: gnu: emacs-peg: Update to 1.0.
Date: Wed, 23 Sep 2020 16:11:13 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9273f75  gnu: emacs-peg: Update to 1.0.
9273f75 is described below

commit 9273f75dd65c17aa5bdcb38c51c7c2000a949d97
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Sep 23 22:09:51 2020 +0200

    gnu: emacs-peg: Update to 1.0.
    
    * gnu/packages/emacs-xyz.scm (emacs-peg): Update to 1.0.
    [source]: Switch to ELPA URI.
    [home-page]: Use ELPA URI.
---
 gnu/packages/emacs-xyz.scm | 19 ++++++++-----------
 1 file changed, 8 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f9851c1..3b75219 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14367,18 +14367,15 @@ timestamps by providing a @code{ts} struct.")
 (define-public emacs-peg
   (package
     (name "emacs-peg")
-    (version "0.6")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/emacsmirror/peg";)
-                    (commit version)))
-              (sha256
-               (base32
-                "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"))
-              (file-name (git-file-name name version))))
+    (version "1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://elpa.gnu.org/packages/peg-"; version 
".tar"))
+       (sha256
+        (base32 "0skr5dz9k34r409hisnj37n1b7n62l3md0glnfx578xkbmxlpcxl"))))
     (build-system emacs-build-system)
-    (home-page "https://github.com/emacsmirror/peg/";)
+    (home-page "https://elpa.gnu.org/packages/peg.html";)
     (synopsis "Parsing Expression Grammars in Elisp")
     (description "This package provides a macro that parses the current buffer
 according to a parsing expression grammar.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]