guix-commits
[Top][All Lists]
Advanced

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

13/14: gnu: java-xom: Don't use unstable tarball.


From: guix-commits
Subject: 13/14: gnu: java-xom: Don't use unstable tarball.
Date: Sun, 10 Feb 2019 11:48:57 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit eed5e162adef90324e46dc45ab83dff1a471bcf8
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Feb 10 14:45:35 2019 +0100

    gnu: java-xom: Don't use unstable tarball.
    
    * gnu/packages/xml.scm (java-xom)[source]: Use GIT-FETCH and
    GIT-FILE-NAME.
    [arguments]: Add 'make-git-checkout-writable' phase.
---
 gnu/packages/xml.scm | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 461c021..3a32035 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1651,12 +1651,14 @@ with XPath too.")
     (name "java-xom")
     (version "127")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/elharo/xom/archive/XOM_";
-                                  version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/elharo/xom.git";)
+                    (commit (string-append "XOM_" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "04m69db1irqja12a9rfxrac8cbn9psqa1k136wh4ls4pxfsdr5wg"))
+                "1jh6y03g5zzdhsb5jm6ms1xnamr460qmn96y3w6aw0ikfwqlg0bq"))
               (modules '((guix build utils)))
               (snippet
                '(begin
@@ -1667,9 +1669,13 @@ with XPath too.")
     (arguments
      `(#:jar-name "xom.jar"
        #:jdk ,icedtea-8
-       #:tests? #f; no tests
+       #:tests? #f                      ; no tests
        #:phases
        (modify-phases %standard-phases
+         (add-after 'unpack 'make-git-checkout-writable
+           (lambda _
+             (for-each make-file-writable (find-files "."))
+             #t))
          (add-before 'configure 'fix-tagsoup-dep
            (lambda _
              ;; FIXME: Where is tagsoup source?



reply via email to

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