[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: java-bouncycastle: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
08/08: gnu: java-bouncycastle: Don't use unstable tarball. |
Date: |
Mon, 20 Apr 2020 02:21:20 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit a8f01c45c627f92f9fa1ab8b0c8de722ecd1e4df
Author: Efraim Flashner <address@hidden>
AuthorDate: Sun Apr 19 22:43:29 2020 +0300
gnu: java-bouncycastle: Don't use unstable tarball.
* gnu/packages/java.scm (java-bouncycastle)[source]: Download using
git-fetch. Use upstream's repo, not a mirror.
---
gnu/packages/java.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 7ad72f4..cab90fb 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -9483,13 +9483,15 @@ algorithms and xxHash hashing algorithm.")
(name "java-bouncycastle")
(version "1.60")
(source (origin
- (method url-fetch)
- (uri (string-append "https://github.com/bcgit/bc-java/archive/r"
- (substring version 0 1) "v"
- (substring version 2 4) ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "http://git.bouncycastle.org/repositories/bc-java")
+ ;(url "https://github.com/bcgit/bc-java")
+ (commit (string-append "r1rv" (substring version 2 4)))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0v434513y708qc87k4xz13p2kzydc736lk3ks67df9mg11s7hchv"))
+ "1m921a1ac2dl797ffzg3d4j97ch308f25spb4jgsj3npfmmys5gb"))
(modules '((guix build utils)))
(snippet
'(begin
- branch master updated (096a052 -> a8f01c4), guix-commits, 2020/04/20
- 02/08: gnu: sparql-query: Sort inputs alphabetically., guix-commits, 2020/04/20
- 01/08: gnu: sparql-query: Don't use unstable tarball., guix-commits, 2020/04/20
- 04/08: gnu: java-fest-util: Don't use unstable tarball., guix-commits, 2020/04/20
- 05/08: gnu: java-fest-test: Don't use unstable tarball., guix-commits, 2020/04/20
- 03/08: gnu: graphene: Update to 1.10.0., guix-commits, 2020/04/20
- 07/08: gnu: java-lz4: Don't use unstable tarball., guix-commits, 2020/04/20
- 06/08: gnu: java-fest-assert: Don't use unstable tarball., guix-commits, 2020/04/20
- 08/08: gnu: java-bouncycastle: Don't use unstable tarball.,
guix-commits <=