From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33616) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejlAQ-0002YW-6e for guix-patches@gnu.org; Thu, 08 Feb 2018 07:19:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejlAM-00041b-MA for guix-patches@gnu.org; Thu, 08 Feb 2018 07:19:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:54120) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ejlAM-000417-IF for guix-patches@gnu.org; Thu, 08 Feb 2018 07:19:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ejlAM-0005IK-CM for guix-patches@gnu.org; Thu, 08 Feb 2018 07:19:02 -0500 Subject: [bug#30390] [PATCH 2/3] gnu: libuv: Update to 1.19.1. Resent-Message-ID: From: Arun Isaac Date: Thu, 8 Feb 2018 17:47:46 +0530 Message-Id: <20180208121747.15072-2-arunisaac@systemreboot.net> In-Reply-To: <20180208121747.15072-1-arunisaac@systemreboot.net> References: <20180208121747.15072-1-arunisaac@systemreboot.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30390@debbugs.gnu.org * gnu/packages/libevent.scm (libuv): Update to 1.19.1. [arguments]: Use modify-phases. --- gnu/packages/libevent.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm index b613bf138..34b23d537 100644 --- a/gnu/packages/libevent.scm +++ b/gnu/packages/libevent.scm @@ -121,24 +121,24 @@ limited support for fork events.") (define-public libuv (package (name "libuv") - (version "1.14.1") + (version "1.19.1") (source (origin (method url-fetch) (uri (string-append "https://dist.libuv.org/dist/v" version "/libuv-v" version ".tar.gz")) (sha256 (base32 - "08kx4mzjsdv90n9pivqxqjxlxk5vaf9p33zzvx661dwfmp9468pk")))) + "0y78029vhfhjwpbwg9c0p8ih8489azpfa9sjnzj2bksf6r29kv9j")))) (build-system gnu-build-system) (arguments - '(#:phases (alist-cons-after - 'unpack 'autogen - (lambda _ - ;; Fashionable people don't run 'make dist' these days, so - ;; we need to do that ourselves. - (zero? (system* "sh" "autogen.sh"))) - %standard-phases) - + `(#:phases + (modify-phases %standard-phases + (add-before 'configure 'autogen + (lambda _ + ;; Fashionable people don't run 'make dist' these days, so + ;; we need to do that ourselves. + (invoke "./autogen.sh") + #t))) ;; XXX: Some tests want /dev/tty, attempt to make connections, etc. #:tests? #f)) (native-inputs `(("autoconf" ,(autoconf-wrapper)) -- 2.15.1