diff mbox series

[bug#40038] gnu: guile-torrent formatting and copyright year update

Message ID 854kutdbam.fsf@disroot.org
State Accepted
Headers show
Series [bug#40038] gnu: guile-torrent formatting and copyright year update | expand

Checks

Context Check Description
cbaines/applying patch fail View Laminar job

Commit Message

Amar M. Singh March 12, 2020, 12:09 p.m. UTC
Copyright year update, 2020.
Re-format whitespace with Emacs.
guile-gcrypt is propagated-input.

Thanks,
Amar

Comments

Mathieu Othacehe March 12, 2020, 12:42 p.m. UTC | #1
Please do not send patches of patches as it is difficult to follow and
generates noise.

Could you also rebase your patch on top of master, as they do not apply
currently.

Thanks,

Mathieu
diff mbox series

Patch

From 16ded7a3fe410b9bdee925ac64bc5d6638deb7d4 Mon Sep 17 00:00:00 2001
From: Amar Singh <nly@disroot.org>
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 © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
 ;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2019 swedebugia <swedebugia@riseup.net>
-;;; Copyright © 2019 Amar Singh <nly@disroot.org>
+;;; Copyright © 2019, 2020 Amar Singh <nly@disroot.org>
 ;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -3111,30 +3111,31 @@  over, or update a value in arbitrary data structures.")
       (license license:gpl3+))))
 
 (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
+                      "1yiagi55ncq1x7s9n7salzywjm4l96y3n7y3s47a9anvz87mrmim"))))
+    (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 BEP003.")
-   (license license:gpl3+)))
+    (license license:gpl3+)))
-- 
2.25.1