[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: Give descriptive file-names for some Git sources.
From: |
Leo Famulari |
Subject: |
02/02: gnu: Give descriptive file-names for some Git sources. |
Date: |
Sun, 27 Aug 2017 18:35:04 -0400 (EDT) |
lfam pushed a commit to branch master
in repository guix.
commit 51988e3a035358eec935930944722374c8ea4871
Author: Leo Famulari <address@hidden>
Date: Sun Aug 27 18:21:26 2017 -0400
gnu: Give descriptive file-names for some Git sources.
* gnu/packages/java.scm (classpath-devel)[source]: Set the file-name.
* gnu/packages/guile.scm (guile-for-guile-emacs,
guile-syntax-highlight)[source]: Likewise.
---
gnu/packages/guile.scm | 2 ++
gnu/packages/java.scm | 1 +
2 files changed, 3 insertions(+)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 53304bd..6dacc47 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -293,6 +293,7 @@ without requiring the source code to be rewritten.")
(uri (git-reference
(url "git://git.hcoop.net/git/bpt/guile.git")
(commit "d8d9a8da05ec876acba81a559798eb5eeceb5a17")))
+ (file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"00sprsshy16y8pxjy126hr2adqcvvzzz96hjyjwgg8swva1qh6b0"))))
@@ -1912,6 +1913,7 @@ manipulate repositories of the Git version control
system.")
(uri (git-reference
(url "git://dthompson.us/guile-syntax-highlight.git")
(commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1zjr6sg3n7xbdsliy45i39dqanxvcms58ayx36wxrz72zpq58vq3"))))
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index cd29bbe..947598c 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -653,6 +653,7 @@ the standard javac executable. The tool runs on JamVM
instead of SableVM.")))
(uri (git-reference
(url "https://git.savannah.gnu.org/git/classpath.git")
(commit commit)))
+ (file-name (string-append "classpath-" version "-checkout"))
(sha256
(base32
"1v2rww76ww322mpg3s12a1kkc6gkp31bm9gcxs532h0wq285fiw4"))))