[bug#35134] Update emacs packages

Message ID CAAc=MExGP5oH46mvXJe1-utJ43bB7WRvq9dELtGWdNi0344RXQ@mail.gmail.com
State Accepted
Headers show
Series [bug#35134] Update emacs packages | expand

Checks

Context Check Description
cbaines/applying patch fail Apply failed

Commit Message

Brian Leung April 4, 2019, 3:02 a.m. UTC
See attached. I committed these three in the specified 1-2-3 sequence on
the same branch.

Comments

Ludovic Courtès April 7, 2019, 8:15 p.m. UTC | #1
Hi Brian,

Applied all three patches, thanks!

Ludo’.

Patch

From 0f0991224a4bf9c9a422d927379d79a3fe6ae3fd Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Thu, 4 Apr 2019 04:48:31 +0200
Subject: [PATCH] gnu: emacs-wgrep: Update to 2.3.0.

* gnu/packages/emacs-xyz.scm (emacs-wgrep): Update to 2.3.0.
---
 gnu/packages/emacs-xyz.scm | 38 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3f66106916..ec3fb376f0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5243,28 +5243,26 @@  Dust.js, React/JSX, Angularjs, ejs, etc.")
     (license license:gpl3+)))
 
 (define-public emacs-wgrep
-  (let ((commit "414be70bd313e482cd9f0b70fd2daad4ee23497c"))
-    ;; Late commit fixes compatibility issue with Emacs 26+.
-    (package
-      (name "emacs-wgrep")
-      (version (git-version "2.1.10" "1" commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/mhayashi1120/Emacs-wgrep")
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "1sdhd587q3pg92lhiayph87azhalmf1gzrnsprkmqvnphv7mvks9"))))
-      (build-system emacs-build-system)
-      (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
-      (synopsis "Edit a grep buffer and apply those changes to the files")
-      (description
-       "Emacs wgrep allows you to edit a grep buffer and apply those changes
+  (package
+    (name "emacs-wgrep")
+    (version "2.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/mhayashi1120/Emacs-wgrep/archive/"
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1cssqbg03fjb6xwf7idv1l3jjsh9r5r232ryi11czqlxfiv658bj"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
+    (synopsis "Edit a grep buffer and apply those changes to the files")
+    (description
+     "Emacs wgrep allows you to edit a grep buffer and apply those changes
 to the file buffer.  Several backends are supported beside the classic grep:
 ack, ag, helm and pt.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public emacs-helm
   (package
-- 
2.21.0