gnu: libuv: Update to 1.4.2.

* gnu/packages/libevent.scm (libuv): Update to 1.4.2.  Update source URI.
  Add 'file-name' field to origin.  Move 'autogen' phase after 'unpack'.
  Run "sh autogen.sh" instead of "./autogen.sh".
This commit is contained in:
Mark H Weaver 2015-03-02 20:33:02 -05:00
parent 2ecebec142
commit bbd0ea77ef
1 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -63,22 +64,23 @@ loop.")
(define-public libuv (define-public libuv
(package (package
(name "libuv") (name "libuv")
(version "0.11.25") (version "1.4.2")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/joyent/libuv/archive/v" (uri (string-append "https://github.com/libuv/libuv/archive/v"
version ".tar.gz")) version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1ys2wlypdbv59yywn91d5vl329z50mi7ivi3fj5rjm4mr9g3wnmr")))) "0hdpysawz85zpmsfkcsd1b7bmx53szcir1szbh1w7ldhkpv29r5r"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases (alist-cons-before '(#:phases (alist-cons-after
'configure 'autogen 'unpack 'autogen
(lambda _ (lambda _
;; Fashionable people don't run 'make dist' these days, so ;; Fashionable people don't run 'make dist' these days, so
;; we need to do that ourselves. ;; we need to do that ourselves.
(zero? (system* "./autogen.sh"))) (zero? (system* "sh" "autogen.sh")))
%standard-phases) %standard-phases)
;; XXX: Some tests want /dev/tty, attempt to make connections, etc. ;; XXX: Some tests want /dev/tty, attempt to make connections, etc.