From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45247) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCLcF-0007dN-Jo for guix-patches@gnu.org; Thu, 12 Mar 2020 07:03:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCLcE-0008Cg-HE for guix-patches@gnu.org; Thu, 12 Mar 2020 07:03:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:50056) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jCLcE-0008CY-DW for guix-patches@gnu.org; Thu, 12 Mar 2020 07:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jCLcE-0004n0-93 for guix-patches@gnu.org; Thu, 12 Mar 2020 07:03:02 -0400 Subject: [bug#40038] [PATCH] gnu: Add guile-torrent. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45158) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCLbl-00079j-5c for guix-patches@gnu.org; Thu, 12 Mar 2020 07:02:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCLbj-0007mg-Hz for guix-patches@gnu.org; Thu, 12 Mar 2020 07:02:33 -0400 Received: from knopi.disroot.org ([178.21.23.139]:50142) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jCLbi-0007jS-TP for guix-patches@gnu.org; Thu, 12 Mar 2020 07:02:31 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id EECDB232B2 for ; Thu, 12 Mar 2020 12:02:27 +0100 (CET) Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with UTF8SMTP id o4i2xCT_TelM for ; Thu, 12 Mar 2020 12:02:26 +0100 (CET) From: nly@disroot.org (Amar M. Singh) Date: Thu, 12 Mar 2020 16:31:59 +0530 Message-ID: <85eetxdefs.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 This is an alpha package provides facilities for working with `.torrent' or metainfo files. Implements a bencode reader and writer according to Bitorrent BEP003, also provides a s-expression syntax for writing metainfo. Note: I am aware that there might be a naming-conflict with another module "Guile-Torrent" that roptat is working on. Thanks, Amar --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-guile-torrent.patch >From 67516dd69842b483f7c05dd6048561053bcce37c Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Thu, 12 Mar 2020 16:25:33 +0530 Subject: [PATCH] gnu: Add guile-torrent. * gnu/packages/guile-xyz.scm (guile-torrent): New variable. --- gnu/packages/guile-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 37a5198e4e..7880e29b20 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3109,3 +3109,32 @@ currently a re-implementation of the lentes library for Clojure. Lenses provide composable procedures, which can be used to focus, apply functions over, or update a value in arbitrary data structures.") (license license:gpl3+)))) + +(define-public guile-torrent + (package (name "guile-torrent") + (version "0.1-preview") + (source (origin (method git-fetch) + (uri (git-reference + (url + "https://github.com/o-nly/torrent.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0rim8gr0cpnm1lixihsjpzg5z3i44vhqgj0dv6z7xj6jiwrmi9pw")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("guile" ,guile-2.2) + ("texinfo" ,texinfo) + ("perl" ,perl) + ("pkg-config" ,pkg-config))) + (inputs + `(("guile-gcrypt" ,guile-gcrypt))) + (home-page "https://github.com/o-nly/torrent") + (synopsis "Torrent library for GNU Guile") + (description + "This package provides facilities for working with `.torrent' or metainfo +files. Implements a bencode reader and writer according to Bitorrent BEP003.") + (license license:gpl3+))) -- 2.25.1 --=-=-=--