From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33460) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ikKAx-00047e-Ow for guix-patches@gnu.org; Wed, 25 Dec 2019 22:51:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ikKAw-0003m1-NV for guix-patches@gnu.org; Wed, 25 Dec 2019 22:51:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48850) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ikKAw-0003ln-BP for guix-patches@gnu.org; Wed, 25 Dec 2019 22:51:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ikKAw-0000aT-9n for guix-patches@gnu.org; Wed, 25 Dec 2019 22:51:02 -0500 Subject: [bug#38747] [PATCH] gnu: nomad: Update to 0.1.2-alpha. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:33340) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ikKAg-00047R-HF for guix-patches@gnu.org; Wed, 25 Dec 2019 22:50:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ikKAf-0003h1-Eo for guix-patches@gnu.org; Wed, 25 Dec 2019 22:50:46 -0500 Received: from knopi.disroot.org ([178.21.23.139]:55908) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ikKAf-0003gY-7a for guix-patches@gnu.org; Wed, 25 Dec 2019 22:50:45 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 426CB2CFF3 for ; Thu, 26 Dec 2019 04:50:44 +0100 (CET) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yudHJoKn64Vv for ; Thu, 26 Dec 2019 04:50:43 +0100 (CET) From: nly@disroot.org (Amar M. Singh) Date: Thu, 26 Dec 2019 09:20:32 +0530 Message-ID: <8536d7kanr.fsf@disroot.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 38747@debbugs.gnu.org --=-=-= Content-Type: text/plain New in this release: Build and install TexInfo and HTML manuals. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-nomad-Update-to-0.1.2-alpha.patch >From e4f07d0f8b08de058af39ec0292f1fdd052afe7f Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Thu, 26 Dec 2019 09:17:35 +0530 Subject: [PATCH] gnu: nomad: Update to 0.1.2-alpha. * gnu/packages/guile-xyz.scm (nomad): Update to 0.1.2-alpha. --- gnu/packages/guile-xyz.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 7e7cf34940..22ac72174e 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -2483,7 +2483,7 @@ perform geometrical transforms on JPEG images.") (define-public nomad (package (name "nomad") - (version "0.1.1-alpha") + (version "0.1.2-alpha") (source (origin (method git-fetch) (uri (git-reference @@ -2492,7 +2492,7 @@ perform geometrical transforms on JPEG images.") (file-name (git-file-name name version)) (sha256 (base32 - "0abz07hl5dh802ciy71xzkvkhyryypq1i94wna40a2wndbd73f7z")))) + "1dnkr1hmvfkwgxd75dcf93pg39yfgawvdpzdhv991yhghv0qxc9h")))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) @@ -2501,7 +2501,9 @@ perform geometrical transforms on JPEG images.") ("pkg-config" ,pkg-config) ("libtool" ,libtool) ("guile" ,guile-2.2) - ("glib:bin" ,glib "bin"))) + ("glib:bin" ,glib "bin") + ("texinfo" ,texinfo) + ("perl" ,perl))) (inputs `(("guile" ,guile-2.2) ("guile-lib" ,guile-lib) -- 2.24.0 --=-=-=--