all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#33597] emacs-irony-mode: fetch sources from git
@ 2018-12-03 13:36 Tim Gesthuizen
  2018-12-04 10:17 ` bug#33597: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Tim Gesthuizen @ 2018-12-03 13:36 UTC (permalink / raw)
  To: 33597

[-- Attachment #1: Type: text/plain, Size: 121 bytes --]

Hi,
the attached patch was not merged with the patchset #33526.
It lets emacs-irony-mode fetch its source via git.

Tim.

[-- Attachment #2: 0001-gnu-emacs-irony-mode-Fetch-source-using-git.patch --]
[-- Type: text/x-patch, Size: 1386 bytes --]

From 25a19bd4d43d36f01a4cd03028b6cacf49f1e31b Mon Sep 17 00:00:00 2001
From: Tim Gesthuizen <tim.gesthuizen@yahoo.de>
Date: Tue, 27 Nov 2018 18:09:25 +0100
Subject: [PATCH] gnu: emacs-irony-mode: Fetch source using git.

* gnu/packages/emacs.scm (emacs-irony-mode)[source]: Rewrite in terms of GIT-FETCH.
---
 gnu/packages/emacs.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 073f19b95..b63a9f77e 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -2811,11 +2811,13 @@ These are distributed in separate files and can be used individually.")
     (version "1.2.0")
     (home-page "https://github.com/Sarcasm/irony-mode")
     (source (origin
-              (method url-fetch)
-              (uri (string-append home-page "/archive/v" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url (string-append home-page ".git"))
+                    (commit (string-append "v" version))))
               (sha256
                (base32
-                "1f68zi0glkg2aly66s07rx3w0b0hdi1znxan02h6dbabaadylk99"))
+                "0nhjrnlmss535jbshjjd30vydbr8py21vkx4p294w6d8vg2rssf8"))
               (file-name (string-append name "-" version ".tar.gz"))))
     (build-system emacs-build-system)
     (arguments '())
-- 
2.19.2


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

* bug#33597: emacs-irony-mode: fetch sources from git
  2018-12-03 13:36 [bug#33597] emacs-irony-mode: fetch sources from git Tim Gesthuizen
@ 2018-12-04 10:17 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2018-12-04 10:17 UTC (permalink / raw)
  To: Tim Gesthuizen; +Cc: 33597-done

Hello Tim,

Tim Gesthuizen <tim.gesthuizen@yahoo.de> skribis:

>>From 25a19bd4d43d36f01a4cd03028b6cacf49f1e31b Mon Sep 17 00:00:00 2001
> From: Tim Gesthuizen <tim.gesthuizen@yahoo.de>
> Date: Tue, 27 Nov 2018 18:09:25 +0100
> Subject: [PATCH] gnu: emacs-irony-mode: Fetch source using git.
>
> * gnu/packages/emacs.scm (emacs-irony-mode)[source]: Rewrite in terms of GIT-FETCH.

Applied.  Apologies for letting it fall through the crack when you
initially submitted it.

Thanks,
Ludo’.

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

end of thread, other threads:[~2018-12-04 10:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-03 13:36 [bug#33597] emacs-irony-mode: fetch sources from git Tim Gesthuizen
2018-12-04 10:17 ` bug#33597: " Ludovic Courtès

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.