all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#35937] [PATCH] Update Emacs packages.
@ 2019-05-27 20:43 Brian Leung
  2019-05-28  3:46 ` Brian Leung
  0 siblings, 1 reply; 4+ messages in thread
From: Brian Leung @ 2019-05-27 20:43 UTC (permalink / raw)
  To: 35937


[-- Attachment #1.1: Type: text/plain, Size: 14 bytes --]

See attached.

[-- Attachment #1.2: Type: text/html, Size: 39 bytes --]

[-- Attachment #2: 0001-gnu-emacs-exec-path-from-shell-Update-to-1.12.patch --]
[-- Type: text/x-patch, Size: 1490 bytes --]

From 4051f456ba54d2efe90efa997ce54f4b6aa7b8c5 Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Mon, 27 May 2019 21:06:46 +0200
Subject: [PATCH 1/2] gnu: emacs-exec-path-from-shell: Update to 1.12.

* gnu/packages/emacs-xyz.scm (emacs-exec-path-from-shell): Update to 1.12.
---
 gnu/packages/emacs-xyz.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9199b45e40..0322833290 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9227,16 +9227,16 @@ functionality is inherited from @code{hcl-mode}.")
 (define-public emacs-exec-path-from-shell
   (package
     (name "emacs-exec-path-from-shell")
-    (version "1.11")
+    (version "1.12")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://stable.melpa.org/packages/exec-path-from-shell-"
-             version ".el"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/purcell/exec-path-from-shell")
+             (commit version)))
        (sha256
         (base32
-         "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
+         "1ga8bpxngd3ph2hdiik92c612ki71qxw818i6rgx6f6a5r0sbf3p"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/purcell/exec-path-from-shell")
     (synopsis "Get environment variables such as @var{PATH} from the shell")
-- 
2.21.0


[-- Attachment #3: 0002-gnu-emacs-editorconfig-Update-to-0.8.0.patch --]
[-- Type: text/x-patch, Size: 1314 bytes --]

From 834c647bf2157291f9b7a6e77c8141582c6c34da Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Mon, 27 May 2019 21:06:56 +0200
Subject: [PATCH 2/2] gnu: emacs-editorconfig: Update to 0.8.0.

* gnu/packages/emacs-xyz.scm (emacs-editorconfig): Update to 0.8.0.
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 0322833290..1f3ee1db60 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13409,7 +13409,7 @@ backends, including the @command{wordnet} offline backend.")
 (define-public emacs-editorconfig
   (package
     (name "emacs-editorconfig")
-    (version "0.7.14")
+    (version "0.8.0")
     (source
      (origin
        (method git-fetch)
@@ -13419,7 +13419,7 @@ backends, including the @command{wordnet} offline backend.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "19j2428ij7sqvrqs7rqg1mcnv9109y6drqba40dkv3vrkk5d2yia"))))
+         "1b2cpqz75pivl323bs60j5rszwi787x6vy68csycikqz9mhpmjn9"))))
     (build-system emacs-build-system)
     (home-page "https://github.com/editorconfig/editorconfig-emacs")
     (synopsis "Define and maintain consistent coding styles between different
-- 
2.21.0


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

* [bug#35937] [PATCH] Update Emacs packages
  2019-05-27 20:43 [bug#35937] [PATCH] Update Emacs packages Brian Leung
@ 2019-05-28  3:46 ` Brian Leung
  2019-05-29  1:19   ` Brian Leung
  0 siblings, 1 reply; 4+ messages in thread
From: Brian Leung @ 2019-05-28  3:46 UTC (permalink / raw)
  To: 35937


[-- Attachment #1.1: Type: text/plain, Size: 95 bytes --]

I have one more patch, committed on the same branch as the other two
commits from this thread.

[-- Attachment #1.2: Type: text/html, Size: 120 bytes --]

[-- Attachment #2: 0001-gnu-emacs-counsel-tramp-Update-to-0.6.3.patch --]
[-- Type: text/x-patch, Size: 1260 bytes --]

From 60d334c4d22f49af03ee86fbd1970c04c17ca142 Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Tue, 28 May 2019 05:44:04 +0200
Subject: [PATCH] gnu: emacs-counsel-tramp: Update to 0.6.3.
To: guix-patches@gnu.org

* gnu/packages/emacs-xyz.scm (emacs-counsel-tramp): Update to 0.6.3.
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1f3ee1db60..ade64651b3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15350,7 +15350,7 @@ well as an option for visually flashing evaluated s-expressions.")
 (define-public emacs-counsel-tramp
   (package
     (name "emacs-counsel-tramp")
-    (version "0.6.2")
+    (version "0.6.3")
     (source
      (origin
        (method git-fetch)
@@ -15360,7 +15360,7 @@ well as an option for visually flashing evaluated s-expressions.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0nz0733x2b9b5nkwivvhv5c8747dng451na1sdfbkx5x9fjs5gc7"))))
+         "1qy9lf7cyv6hp9mmpwh92cpdcffbxzyzchx6878d5pmk9qh6xy92"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-ivy" ,emacs-ivy)))
-- 
2.21.0


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

* [bug#35937] [PATCH] Update Emacs packages
  2019-05-28  3:46 ` Brian Leung
@ 2019-05-29  1:19   ` Brian Leung
  2019-05-31  8:22     ` bug#35937: " Ricardo Wurmus
  0 siblings, 1 reply; 4+ messages in thread
From: Brian Leung @ 2019-05-29  1:19 UTC (permalink / raw)
  To: 35937


[-- Attachment #1.1: Type: text/plain, Size: 223 bytes --]

Here are some more updates on the same branch.

On Tue, May 28, 2019 at 5:46 AM Brian Leung <bkleung89@gmail.com> wrote:

> I have one more patch, committed on the same branch as the other two
> commits from this thread.
>

[-- Attachment #1.2: Type: text/html, Size: 526 bytes --]

[-- Attachment #2: 0005-gnu-emacs-diff-hl-Update-to-1.8.6.patch --]
[-- Type: text/x-patch, Size: 2050 bytes --]

From 7c928074651d9d581fd71a6c15816c4d24d333d0 Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Wed, 29 May 2019 03:17:00 +0200
Subject: [PATCH 5/5] gnu: emacs-diff-hl: Update to 1.8.6.

* gnu/packages/emacs-xyz.scm (emacs-diff-hl): Update to 1.8.6.
---
 gnu/packages/emacs-xyz.scm | 35 ++++++++++++++++++-----------------
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 5dca8cac7a..a933438f66 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -7023,26 +7023,27 @@ actually changing the buffer's text.")
     (license license:gpl3+)))
 
 (define-public emacs-diff-hl
- (package
-  (name "emacs-diff-hl")
-  (version "1.8.5")
-  (source
-    (origin
-      (method url-fetch)
-      (uri (string-append "https://elpa.gnu.org/packages/diff-hl-"
-                          version ".tar"))
-      (sha256
+  (package
+    (name "emacs-diff-hl")
+    (version "1.8.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/dgutov/diff-hl")
+             (commit version)))
+       (sha256
         (base32
-          "1vxc7z7c2qs0mx7l5sa4sybi5qbzv0s79flj74p1ynw8dl3qxg3d"))))
-  (build-system emacs-build-system)
-  (home-page "https://github.com/dgutov/diff-hl")
-  (synopsis
-    "Highlight uncommitted changes using VC")
-  (description
-    "@code{diff-hl-mode} highlights uncommitted changes on the side of the
+         "1xlsg728mz3cwhrsqvisa0aidic67nymd9g7h4c1h3q63j39yb2s"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/dgutov/diff-hl")
+    (synopsis
+     "Highlight uncommitted changes using VC")
+    (description
+     "@code{diff-hl-mode} highlights uncommitted changes on the side of the
 window (using the fringe, by default), allows you to jump between
 the hunks and revert them selectively.")
-  (license license:gpl3+)))
+    (license license:gpl3+)))
 
 (define-public emacs-diminish
   (package
-- 
2.21.0


[-- Attachment #3: 0004-gnu-emacs-helm-Update-to-3.2.patch --]
[-- Type: text/x-patch, Size: 1157 bytes --]

From b381a3cd38c75cef07128f5d15ac32240f58759c Mon Sep 17 00:00:00 2001
From: Brian Leung <bkleung89@gmail.com>
Date: Wed, 29 May 2019 03:16:49 +0200
Subject: [PATCH 4/5] gnu: emacs-helm: Update to 3.2.

* gnu/packages/emacs-xyz.scm (emacs-helm): Update to 3.2.
---
 gnu/packages/emacs-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ade64651b3..5dca8cac7a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5558,7 +5558,7 @@ ack, ag, helm and pt.")
 (define-public emacs-helm
   (package
     (name "emacs-helm")
-    (version "3.1")
+    (version "3.2")
     (source
      (origin
        (method git-fetch)
@@ -5567,7 +5567,7 @@ ack, ag, helm and pt.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1x3nv8zvp8vvl30bm2d83hd7zxb0ca64pc8kwb81ml9al6r3mm01"))))
+        (base32 "12yyprpgh2by2pd41i4z9gz55fxg0f90x03bfrsf791xwbhf6931"))))
     (build-system emacs-build-system)
     (propagated-inputs
      `(("emacs-async" ,emacs-async)
-- 
2.21.0


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

* bug#35937: [PATCH] Update Emacs packages
  2019-05-29  1:19   ` Brian Leung
@ 2019-05-31  8:22     ` Ricardo Wurmus
  0 siblings, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2019-05-31  8:22 UTC (permalink / raw)
  To: Brian Leung; +Cc: 35937-done


Hi Brian,

thank you for these patches!  I applied all of them after minor changes
to some of the commit messages.

-- 
Ricardo

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

end of thread, other threads:[~2019-05-31  8:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-27 20:43 [bug#35937] [PATCH] Update Emacs packages Brian Leung
2019-05-28  3:46 ` Brian Leung
2019-05-29  1:19   ` Brian Leung
2019-05-31  8:22     ` bug#35937: " Ricardo Wurmus

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.