guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: gimp-resynthesizer: Don't use unstable tarball.


From: guix-commits
Subject: 02/02: gnu: gimp-resynthesizer: Don't use unstable tarball.
Date: Sat, 11 Apr 2020 17:09:19 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 48e961a5ab2d5c83ce0ba263cb84efbd7da9b20e
Author: Efraim Flashner <address@hidden>
AuthorDate: Sun Apr 12 00:05:30 2020 +0300

    gnu: gimp-resynthesizer: Don't use unstable tarball.
    
    * gnu/packages/gimp.scm (gimp-resynthesizer)[source]: Download using
    git-fetch.
    [arguments]: Remove stray tabs.
---
 gnu/packages/gimp.scm | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/gimp.scm b/gnu/packages/gimp.scm
index a6278c6..ab0dbcc 100644
--- a/gnu/packages/gimp.scm
+++ b/gnu/packages/gimp.scm
@@ -337,13 +337,14 @@ MyPaint.")
     (version "2.0.3")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/bootchk/resynthesizer/archive/v";
-                          version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/bootchk/resynthesizer";)
+              (commit (string-append "v" version))))
        (sha256
         (base32
-         "0l3404w6rqny7h3djskxf149gzx6x4qhndgbh3403c9lbh4pi1kr"))
-       (file-name (string-append name "-" version ".tar.gz"))))
+         "1jwc8bhhm21xhrgw56nzbma6fwg59gc8anlmyns7jdiw83y0zx3j"))
+       (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (arguments
      `( ;; Turn off tests to avoid:
@@ -351,11 +352,11 @@ MyPaint.")
        #:tests? #f
        #:phases
        (modify-phases %standard-phases
-        (add-after 'unpack 'set-env
-          (lambda _
-            (setenv "CONFIG_SHELL" (which "sh"))
-            #t))
-        (add-after 'configure 'set-prefix
+         (add-after 'unpack 'set-env
+           (lambda _
+             (setenv "CONFIG_SHELL" (which "sh"))
+             #t))
+         (add-after 'configure 'set-prefix
            ;; Install plugin under $prefix, not under GIMP's libdir.
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((target (string-append (assoc-ref outputs "out")
@@ -364,8 +365,8 @@ MyPaint.")
                                             (package-version gimp))
                                           ".0")))
                (substitute* (list "src/resynthesizer/Makefile"
-                                 "src/resynthesizer-gui/Makefile")
-                (("GIMP_LIBDIR = .*")
+                                  "src/resynthesizer-gui/Makefile")
+                 (("GIMP_LIBDIR = .*")
                   (string-append "GIMP_LIBDIR = " target "\n")))
                (mkdir-p target)
                #t))))))



reply via email to

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