guix-commits
[Top][All Lists]
Advanced

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

05/06: gnu: python-waf: Update to 1.9.5.


From: Efraim Flashner
Subject: 05/06: gnu: python-waf: Update to 1.9.5.
Date: Sat, 29 Oct 2016 21:07:57 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit 7dd55dfecad00cadb91e6efe09a442cdfc51798d
Author: Efraim Flashner <address@hidden>
Date:   Sat Oct 29 22:54:43 2016 +0300

    gnu: python-waf: Update to 1.9.5.
    
    * gnu/packages/python.scm (python-waf): Update to 1.9.5.
    [arguments]: Shorten custom build phase.
    [source]: Use http.
    [home-page]: Use http.
---
 gnu/packages/python.scm |   22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f7485ad..45e683c 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5236,30 +5236,28 @@ connection to each user.")
 (define-public python-waf
   (package
     (name "python-waf")
-    (version "1.9.1")
+    (version "1.9.5")
     (source (origin
               (method url-fetch)
-              (uri (string-append "https://waf.io/";
+              (uri (string-append "http://waf.io/";
                                   "waf-" version ".tar.bz2"))
               (sha256
                (base32
-                "1nc4qaqx2vsanlpp9mcwvf91xjqpkvcc6fcxd5sb4fwvaxamw5v6"))))
+                "1sl3ipi2czds57rlzjnpdzqa0skx8asfvmh3qmibpvdwf15rpppg"))))
     (build-system python-build-system)
     (arguments
      '(#:phases
        (modify-phases %standard-phases
          (replace 'build
-                  (lambda _
-                    (zero? (begin
-                             (system* "python" "waf-light" "configure")
-                             (system* "python" "waf-light" "build")))))
+           (lambda _
+             (zero? (system* "python" "waf-light" "configure" "build"))))
          (replace 'check
-                  (lambda _
-                    (zero? (system* "python" "waf" "--version"))))
+           (lambda _
+             (zero? (system* "python" "waf" "--version"))))
          (replace 'install
-                  (lambda _
-                    (copy-file "waf" %output))))))
-    (home-page "https://waf.io/";)
+           (lambda _
+             (copy-file "waf" %output))))))
+    (home-page "http://waf.io/";)
     (synopsis "Python-based build system")
     (description
      "Waf is a Python-based framework for configuring, compiling and installing



reply via email to

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