guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: exfat-utils: Update to 1.2.4.


From: Tobias Geerinckx-Rice
Subject: 01/04: gnu: exfat-utils: Update to 1.2.4.
Date: Sun, 13 Nov 2016 12:34:24 +0000 (UTC)

nckx pushed a commit to branch master
in repository guix.

commit 3b0f2ba46b8c14cf9d9729e13e006af697d07403
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu Nov 10 15:39:10 2016 +0100

    gnu: exfat-utils: Update to 1.2.4.
    
    * gnu/packages/mtools.scm (exfat-utils): Update to 1.2.4.
    [source, home-page]: Move away from dead Google Code project.
    [arguments, native-inputs]: Remove.
---
 gnu/packages/mtools.scm |   44 ++++++--------------------------------------
 1 file changed, 6 insertions(+), 38 deletions(-)

diff --git a/gnu/packages/mtools.scm b/gnu/packages/mtools.scm
index ca8af84..a95b8ef 100644
--- a/gnu/packages/mtools.scm
+++ b/gnu/packages/mtools.scm
@@ -49,49 +49,17 @@ FAT-specific file attributes.")
 (define-public exfat-utils
   (package
     (name "exfat-utils")
-    (version "1.1.1")
+    (version "1.2.4")
     (source (origin
               (method url-fetch)
-              (uri "https://docs.google.com/uc?export=download&\
-id=0B7CLI-REKbE3UzNtSkRvdHBpdjQ")
+              (uri (string-append
+                    "https://github.com/relan/exfat/releases/download/v";
+                    version "/" name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0ck2snhlhp965bb9a4y1g2lpl979sw1yznm79wbavyv174458i66"))
-              (file-name (string-append name "-" version ".tar.gz"))))
+                "04dvrdmwmj9ggad8aq6inbjcq2yi9i62z42nnivhk7bb84k1k9ba"))))
     (build-system gnu-build-system)
-    (native-inputs `(("scons" ,scons)))
-    (arguments
-     '(#:tests? #f                                ;no test suite
-       #:phases (modify-phases %standard-phases
-                  (delete 'configure)
-                  (add-after 'unpack 'scons-propagate-environment
-                             (lambda _
-                               ;; Modify the SConstruct file to arrange for
-                               ;; environment variables to be propagated.
-                               (substitute* "SConstruct"
-                                 (("^env = Environment\\(")
-                                  "env = Environment(ENV=os.environ, "))))
-                  (replace 'build
-                           (lambda _
-                             (zero? (system* "scons"))))
-                  (replace 'install
-                           (lambda* (#:key outputs #:allow-other-keys)
-                             (let* ((out  (assoc-ref outputs "out"))
-                                    (bin  (string-append out "/bin"))
-                                    (man8 (string-append out
-                                                         "/share/man/man8")))
-                               (mkdir-p bin)
-                               (mkdir-p man8)
-                               (for-each (lambda (file)
-                                           (copy-file
-                                            file
-                                            (string-append man8 "/"
-                                                           (basename file))))
-                                         (find-files "." "\\.8$"))
-                               (zero? (system* "scons" "install"
-                                               (string-append "DESTDIR="
-                                                              bin)))))))))
-    (home-page "https://code.google.com/p/exfat";)
+    (home-page "https://github.com/relan/exfat";)
     (synopsis "Utilities to manipulate exFAT file systems")
     (description
      "This package provides an implementation of the exFAT file system,



reply via email to

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