guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/19: gnu: java-plexus-utils: Don't use unstable tarball.


From: guix-commits
Subject: 03/19: gnu: java-plexus-utils: Don't use unstable tarball.
Date: Mon, 30 Mar 2020 03:10:12 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit c53badd4520252fc19c89820af0d569a2d809af2
Author: Efraim Flashner <address@hidden>
AuthorDate: Sun Mar 29 22:12:31 2020 +0300

    gnu: java-plexus-utils: Don't use unstable tarball.
    
    * gnu/packages/java.scm (java-plexus-utils)[source]: Download using
    git-fetch.
---
 gnu/packages/java.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index db28805..ce5aee1 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -3575,13 +3575,14 @@ sharing common test data, and test runners for running 
tests.")
     (name "java-plexus-utils")
     (version "3.2.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/codehaus-plexus/";
-                                  "plexus-utils/archive/plexus-utils-"
-                                  version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/codehaus-plexus/plexus-utils";)
+                     (commit (string-append "plexus-utils-" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1ihfigar20lvk4pinii7dq05i173xphhw4iyrk6gjfy04m01j2lz"))))
+                "1mlx7xrq7lgqjqcpg7y4hi1ghavf28vvk3har82037dqx61n0f15"))))
     (build-system ant-build-system)
     ;; FIXME: The default build.xml does not include a target to install
     ;; javadoc files.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]