From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36385) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jCMg4-0000hh-3E for guix-patches@gnu.org; Thu, 12 Mar 2020 08:11:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jCMg2-0005yr-Rm for guix-patches@gnu.org; Thu, 12 Mar 2020 08:11:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:50126) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jCMg2-0005yh-9y for guix-patches@gnu.org; Thu, 12 Mar 2020 08:11:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jCMg2-0000Bw-5D for guix-patches@gnu.org; Thu, 12 Mar 2020 08:11:02 -0400 Subject: [bug#40038] [PATCH] gnu: guile-torrent formatting and copyright year update 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:39:53 +0530 Message-ID: <854kutdbam.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 Copyright year update, 2020. Re-format whitespace with Emacs. guile-gcrypt is propagated-input. Thanks, Amar --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-guile-torrent-formatting-and-copyright-year-upda.patch Content-Transfer-Encoding: quoted-printable >From 16ded7a3fe410b9bdee925ac64bc5d6638deb7d4 Mon Sep 17 00:00:00 2001 From: Amar Singh Date: Thu, 12 Mar 2020 17:37:01 +0530 Subject: [PATCH] gnu: guile-torrent formatting and copyright year update --- gnu/packages/guile-xyz.scm | 55 +++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 7ca07ed7ff..b384670e4e 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -21,7 +21,7 @@ ;;; Copyright =C2=A9 2018 Pierre-Antoine Rouby ;;; Copyright =C2=A9 2018 Eric Bavier ;;; Copyright =C2=A9 2019 swedebugia -;;; Copyright =C2=A9 2019 Amar Singh +;;; Copyright =C2=A9 2019, 2020 Amar Singh ;;; Copyright =C2=A9 2019 Timothy Sample ;;; ;;; This file is part of GNU Guix. @@ -3111,30 +3111,31 @@ over, or update a value in arbitrary data structure= s.") (license license:gpl3+)))) =20 (define-public guile-torrent - (package (name "guile-torrent") - (version "0.1.3-candidate") - (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 - "1yiagi55ncq1x7s9n7salzywjm4l96y3n7y3s47a9anvz87mrmim= ")))) - (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 @code{.torrent} or = metainfo + (package + (name "guile-torrent") + (version "0.1.3-candidate") + (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 + "1yiagi55ncq1x7s9n7salzywjm4l96y3n7y3s47a9anvz87mrmi= m")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("guile" ,guile-2.2) + ("texinfo" ,texinfo) + ("perl" ,perl) + ("pkg-config" ,pkg-config))) + (propagated-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 @code{.torrent} or= metainfo files. Implements a bencode reader and writer according to Bitorrent BEP0= 03.") - (license license:gpl3+))) + (license license:gpl3+))) --=20 2.25.1 --=-=-=--