GNU bug report logs - #40038
[PATCH] gnu: Add guile-torrent.

Previous Next

Package: guix-patches;

Reported by: nly <at> disroot.org (Amar M. Singh)

Date: Thu, 12 Mar 2020 11:03:02 UTC

Severity: normal

Tags: patch

Done: Mathieu Othacehe <m.othacehe <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 40038 in the body.
You can then email your comments to 40038 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 11:03:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to nly <at> disroot.org (Amar M. Singh):
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 12 Mar 2020 11:03:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: nly <at> disroot.org (Amar M. Singh)
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add guile-torrent.
Date: Thu, 12 Mar 2020 16:31:59 +0530
[Message part 1 (text/plain, inline)]
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

[0001-gnu-Add-guile-torrent.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 11:19:02 GMT) Full text and rfc822 format available.

Message #8 received at 40038 <at> debbugs.gnu.org (full text, mbox):

From: nly <at> disroot.org (Amar M. Singh)
To: 40038 <at> debbugs.gnu.org
Subject: [PATCH] gnu: guile-torrent: fix description according to guix lint
Date: Thu, 12 Mar 2020 16:47:57 +0530
[Message part 1 (text/plain, inline)]
fixed description styling.

(and didn't forget to attach patch)

Thanks,
Amar

[0001-gnu-guile-torrent-fix-description-according-to-guix-.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 11:55:02 GMT) Full text and rfc822 format available.

Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: 40038 <at> debbugs.gnu.org
Subject: Re: [bug#40038] [PATCH] gnu: Add guile-torrent.
Date: Thu, 12 Mar 2020 12:54:18 +0100
Hello Amar,

Thanks for this patch.

;;; Copyright © 2019 Amar Singh <nly <at> disroot.org>

Don't forget to update your copyright.

+(define-public guile-torrent
+  (package (name "guile-torrent")
            ^
            This should be on the next line.

+   (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)))

guile-gcrypt probably needs to be a propagated-input.

+   (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.")

You can squash the other patch you sent fixing the description with this
one.

Mathieu




Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 11:55:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 11:59:01 GMT) Full text and rfc822 format available.

Message #17 received at 40038 <at> debbugs.gnu.org (full text, mbox):

From: nly <at> disroot.org (Amar M. Singh)
To: 40038 <at> debbugs.gnu.org
Subject: [PATCH] gnu: guile-torrent: Update to 0.1.3-candidate.
Date: Thu, 12 Mar 2020 17:27:51 +0530
[Message part 1 (text/plain, inline)]
Minor fix in Guile-Torrent's configure.ac file:
- GUILE_PROGS(2.0.14)
+ GUILE_PROGS

Should help building with guile-next.

Thanks,
Amar

[0001-gnu-guile-torrent-Update-to-0.1.3-candidate.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 12:11:02 GMT) Full text and rfc822 format available.

Message #20 received at 40038 <at> debbugs.gnu.org (full text, mbox):

From: nly <at> disroot.org (Amar M. Singh)
To: 40038 <at> debbugs.gnu.org
Subject: [PATCH] gnu: guile-torrent formatting and copyright year update
Date: Thu, 12 Mar 2020 17:39:53 +0530
[Message part 1 (text/plain, inline)]
Copyright year update, 2020.
Re-format whitespace with Emacs.
guile-gcrypt is propagated-input.

Thanks,
Amar

[0001-gnu-guile-torrent-formatting-and-copyright-year-upda.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 12:14:02 GMT) Full text and rfc822 format available.

Message #23 received at 40038 <at> debbugs.gnu.org (full text, mbox):

From: nly <at> disroot.org (Amar M. Singh)
To: 40038 <at> debbugs.gnu.org
Subject: [PATCH] [SQUASHED] gnu: add guile-torrent
Date: Thu, 12 Mar 2020 17:43:25 +0530
[Message part 1 (text/plain, inline)]
Squashed the patches.

Thanks,
Amar

[0001-gnu-Add-guile-torrent.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 12:43:01 GMT) Full text and rfc822 format available.

Message #26 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: 40038 <at> debbugs.gnu.org
Subject: Re: [bug#40038] [PATCH] gnu: guile-torrent formatting and copyright
 year update
Date: Thu, 12 Mar 2020 13:42:25 +0100
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




Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 12:43:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 13:39:01 GMT) Full text and rfc822 format available.

Message #32 received at 40038 <at> debbugs.gnu.org (full text, mbox):

From: nly <at> disroot.org (Amar M. Singh)
To: 40038 <at> debbugs.gnu.org
Subject: [PATCH] gnu: Add guile-torrent.
Date: Thu, 12 Mar 2020 19:08:02 +0530
[Message part 1 (text/plain, inline)]
Resolved into tip of guix/master.

Thanks,
Amar

[0001-gnu-Add-guile-torrent.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 14:38:02 GMT) Full text and rfc822 format available.

Message #35 received at 40038 <at> debbugs.gnu.org (full text, mbox):

From: Julien Lepiller <julien <at> lepiller.eu>
To: nly <at> disroot.org,40038 <at> debbugs.gnu.org
Subject: Re: [bug#40038] [PATCH] gnu: Add guile-torrent.
Date: Thu, 12 Mar 2020 10:37:42 -0400
Le 12 mars 2020 09:38:02 GMT-04:00, nly <at> disroot.org a écrit :
>
>Resolved into tip of guix/master.
>
>Thanks,
>Amar

Thank you :). Don't hesitate to take from my own project if you need to. I'll see if I can contribute to your project (so we join forces instead of wasting efforts on two fronts), but I'm working on other stuff now, which is why my guile-torrent is stalled.




Information forwarded to guix-patches <at> gnu.org:
bug#40038; Package guix-patches. (Thu, 12 Mar 2020 14:56:02 GMT) Full text and rfc822 format available.

Message #38 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <m.othacehe <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: 40038-done <at> debbugs.gnu.org
Subject: Re: [bug#40038] [PATCH] gnu: Add guile-torrent.
Date: Thu, 12 Mar 2020 15:55:36 +0100
> Resolved into tip of guix/master.

Thanks, pushed as be78906592c761aa2a67e979074561e459efdcac.

Mathieu




Reply sent to Mathieu Othacehe <m.othacehe <at> gmail.com>:
You have taken responsibility. (Thu, 12 Mar 2020 14:56:02 GMT) Full text and rfc822 format available.

Notification sent to nly <at> disroot.org (Amar M. Singh):
bug acknowledged by developer. (Thu, 12 Mar 2020 14:56:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 10 Apr 2020 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 354 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.