From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:60898) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCMUR-0000tO-4J for guix-patches@gnu.org; Thu, 12 Mar 2020 07:59:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCMUQ-0001Sl-5r for guix-patches@gnu.org; Thu, 12 Mar 2020 07:59:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:50092) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jCMUP-0001RK-Os for guix-patches@gnu.org; Thu, 12 Mar 2020 07:59:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jCMUP-0008Di-Oo for guix-patches@gnu.org; Thu, 12 Mar 2020 07:59:01 -0400 Subject: [bug#40038] [PATCH] gnu: guile-torrent: Update to 0.1.3-candidate. References: <85eetxdefs.fsf@disroot.org> In-Reply-To: <85eetxdefs.fsf@disroot.org> Resent-Message-ID: From: nly@disroot.org (Amar M. Singh) Date: Thu, 12 Mar 2020 17:27:51 +0530 Message-ID: <857dzpdbuo.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: 40038@debbugs.gnu.org --=-=-= Content-Type: text/plain Minor fix in Guile-Torrent's configure.ac file: - GUILE_PROGS(2.0.14) + GUILE_PROGS Should help building with guile-next. Thanks, Amar --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-guile-torrent-Update-to-0.1.3-candidate.patch >From ebdeca5cdf83c597c309985cade3d388c3a73014 Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Thu, 12 Mar 2020 17:22:36 +0530 Subject: [PATCH] gnu: guile-torrent: Update to 0.1.3-candidate. Minor release for GNU Guix. * gnu/packages/guile-xyz.scm (guile-torrent): Update to 0.1.3-candidate. --- gnu/packages/guile-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index e214fe45b0..7ca07ed7ff 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3112,7 +3112,7 @@ over, or update a value in arbitrary data structures.") (define-public guile-torrent (package (name "guile-torrent") - (version "0.1-preview") + (version "0.1.3-candidate") (source (origin (method git-fetch) (uri (git-reference (url @@ -3121,7 +3121,7 @@ over, or update a value in arbitrary data structures.") (file-name (git-file-name name version)) (sha256 (base32 - "0rim8gr0cpnm1lixihsjpzg5z3i44vhqgj0dv6z7xj6jiwrmi9pw")))) + "1yiagi55ncq1x7s9n7salzywjm4l96y3n7y3s47a9anvz87mrmim")))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) -- 2.25.1 --=-=-=--