GNU bug report logs - #63964
[PATCH] gnu: Add kineto.

Previous Next

Package: guix-patches;

Reported by: Christopher Howard <christopher <at> librehacker.com>

Date: Thu, 8 Jun 2023 21:20:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 63964 in the body.
You can then email your comments to 63964 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#63964; Package guix-patches. (Thu, 08 Jun 2023 21:20:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Christopher Howard <christopher <at> librehacker.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 08 Jun 2023 21:20:01 GMT) Full text and rfc822 format available.

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

From: Christopher Howard <christopher <at> librehacker.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add kineto.
Date: Thu, 8 Jun 2023 13:18:30 -0800
[Message part 1 (text/plain, inline)]
Patch attached to add kineto, an HTTP proxy for the Gemini protocol.

-- 
📛 Christopher Howard
🚀 gemini://gem.librehacker.com
🌐 http://gem.librehacker.com

בראשית ברא אלהים את השמים ואת הארץ
[0001-gnu-Add-kineto.patch (text/plain, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#63964; Package guix-patches. (Sat, 10 Jun 2023 17:05:01 GMT) Full text and rfc822 format available.

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

From: Christopher Howard <christopher <at> librehacker.com>
To: 63964 <at> debbugs.gnu.org
Subject: Re: bug#63964: Acknowledgement ([PATCH] gnu: Add kineto.)
Date: Sat, 10 Jun 2023 09:04:10 -0800
[Message part 1 (text/plain, inline)]
Someone on IRC asked me to makes some changes to the description. Here is a new patch.

-- 
Christopher Howard
[0001-gnu-Add-kineto.patch (text/plain, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#63964; Package guix-patches. (Fri, 23 Jun 2023 18:54:02 GMT) Full text and rfc822 format available.

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

From: Christopher Howard <christopher <at> librehacker.com>
To: 63964 <at> debbugs.gnu.org
Subject: Re: bug#63964: Acknowledgement ([PATCH] gnu: Add kineto.)
Date: Fri, 23 Jun 2023 10:53:29 -0800
I just want to mention that the package builds easily without any issues.

-- 
Christopher Howard




Information forwarded to guix-patches <at> gnu.org:
bug#63964; Package guix-patches. (Thu, 06 Jul 2023 20:33:02 GMT) Full text and rfc822 format available.

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

From: christopher <at> librehacker.com
To: 63964 <at> debbugs.gnu.org
Cc: Christopher Howard <christopher <at> librehacker.com>
Subject: [PATCH] gnu: Add kineto
Date: Thu,  6 Jul 2023 12:31:50 -0800
From: Christopher Howard <christopher <at> librehacker.com>

* gnu/packages/web.scm (kineto): New variable.
---
 gnu/packages/web.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 3af4aa0b8d..3969ff4605 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -62,6 +62,7 @@
 ;;; Copyright © 2023 Paul A. Patience <paul <at> apatience.com>
 ;;; Copyright © 2022 Bruno Victal <mirai <at> makinata.eu>
 ;;; Copyright © 2023 David Thompson <dthompson2 <at> worcester.edu>
+;;; Copyright © 2023 Christopher Howard <christopher <at> librehacker.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -8502,6 +8503,36 @@ (define-public vger
 @command{stunnel} on @command{inetd}.")
     (license license:bsd-2)))
 
+(define-public kineto
+  (package
+    (name "kineto")
+    (version "0.0.0-20211105093215-857f8c97ebc5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~sircmpwn/kineto")
+                    (commit (go-version->git-ref version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1r17c904i76yy5ilvhjczmhnq5g7r4nkjwmsjcfxcqzly0ia7m2k"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "git.sr.ht/~sircmpwn/kineto/"))
+    (propagated-inputs `(("go-git-sr-ht-sircmpwn-getopt"
+                          ,go-git-sr-ht-sircmpwn-getopt)
+                         ("go-git-sr-ht-adnano-go-gemini"
+                          ,go-git-sr-ht-adnano-go-gemini)))
+    (home-page "https://git.sr.ht/~sircmpwn/kineto/")
+    (synopsis "HTTP proxy for Gemini")
+    (description
+     "This is an @acronym{HTTP} to
+@url{https://gemini.circumlunar.space/,Gemini} proxy designed to provide
+service for a single domain, i.e.  to make your Gemini site available over
+HTTP.  It can proxy to any domain in order to facilitate linking to the rest
+of Geminispace, but it defaults to a specific domain.")
+    (license license:gpl3)))
+
 (define-public libzim
   (package
     (name "libzim")

base-commit: 872b2487451c39020a78ed3227992fb02a7ed5e5
-- 
2.40.1





Information forwarded to guix-patches <at> gnu.org:
bug#63964; Package guix-patches. (Thu, 06 Jul 2023 20:36:03 GMT) Full text and rfc822 format available.

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

From: Christopher Howard <christopher <at> librehacker.com>
To: 63964 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add kineto
Date: Thu, 6 Jul 2023 12:35:15 -0800
The last patch had encoding issues. I sent the patch again using git-send-email.

-- 
Christopher Howard




Information forwarded to guix-patches <at> gnu.org:
bug#63964; Package guix-patches. (Thu, 06 Jul 2023 21:35:01 GMT) Full text and rfc822 format available.

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

From: Bruno Victal <mirai <at> makinata.eu>
To: christopher <at> librehacker.com
Cc: 63964 <at> debbugs.gnu.org
Subject: Re: [bug#63964] [PATCH] gnu: Add kineto
Date: Thu, 6 Jul 2023 22:34:03 +0100
Hi Christopher,

On 2023-07-06 21:31, christopher <at> librehacker.com wrote:
> +    (propagated-inputs `(("go-git-sr-ht-sircmpwn-getopt"
> +                          ,go-git-sr-ht-sircmpwn-getopt)
> +                         ("go-git-sr-ht-adnano-go-gemini"
> +                          ,go-git-sr-ht-adnano-go-gemini)))

You can write this part as:
(propagated-inputs
  (list go-git-sr-ht-sircmpwn-getopt go-git-sr-ht-adnano-go-gemini))


-- 
Furthermore, I consider that nonfree software must be eradicated.

Cheers,
Bruno.





Information forwarded to guix-patches <at> gnu.org:
bug#63964; Package guix-patches. (Wed, 19 Jul 2023 21:37:02 GMT) Full text and rfc822 format available.

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

From: Christopher Howard <christopher <at> librehacker.com>
To: 63964 <at> debbugs.gnu.org
Cc: christopher <at> librehacker.com
Subject: [PATCH] gnu: Add kineto
Date: Wed, 19 Jul 2023 13:35:39 -0800
* gnu/packages/web.scm (kineto): New variable.
---
 gnu/packages/web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index ad5ec0a..f8fd856 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -62,6 +62,7 @@
 ;;; Copyright © 2023 Paul A. Patience <paul <at> apatience.com>
 ;;; Copyright © 2022 Bruno Victal <mirai <at> makinata.eu>
 ;;; Copyright © 2023 David Thompson <dthompson2 <at> worcester.edu>
+;;; Copyright © 2023 Christopher Howard <christopher <at> librehacker.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -8558,6 +8559,34 @@ (define-public vger
 @command{stunnel} on @command{inetd}.")
     (license license:bsd-2)))
 
+(define-public kineto
+  (package
+    (name "kineto")
+    (version "0.0.0-20211105093215-857f8c97ebc5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://git.sr.ht/~sircmpwn/kineto")
+                    (commit (go-version->git-ref version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1r17c904i76yy5ilvhjczmhnq5g7r4nkjwmsjcfxcqzly0ia7m2k"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "git.sr.ht/~sircmpwn/kineto/"))
+    (propagated-inputs
+     (list go-git-sr-ht-sircmpwn-getopt go-git-sr-ht-adnano-go-gemini))
+    (home-page "https://git.sr.ht/~sircmpwn/kineto/")
+    (synopsis "HTTP proxy for Gemini")
+    (description
+     "This is an @acronym{HTTP} to
+@url{https://gemini.circumlunar.space/,Gemini} proxy designed to provide
+service for a single domain, i.e.  to make your Gemini site available over
+HTTP.  It can proxy to any domain in order to facilitate linking to the rest
+of Geminispace, but it defaults to a specific domain.")
+    (license license:gpl3)))
+
 (define-public libzim
   (package
     (name "libzim")
-- 
2.40.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 07 Aug 2023 14:04:03 GMT) Full text and rfc822 format available.

Notification sent to Christopher Howard <christopher <at> librehacker.com>:
bug acknowledged by developer. (Mon, 07 Aug 2023 14:04:03 GMT) Full text and rfc822 format available.

Message #28 received at 63964-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Christopher Howard <christopher <at> librehacker.com>
Cc: 63964-done <at> debbugs.gnu.org
Subject: Re: bug#63964: [PATCH] gnu: Add kineto.
Date: Mon, 07 Aug 2023 16:03:30 +0200
Christopher Howard <christopher <at> librehacker.com> skribis:

> * gnu/packages/web.scm (kineto): New variable.

[...]

> +    (license license:gpl3)))

Hi!  Change to ‘gpl3+’ and applied, thanks!

Ludo’.




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

This bug report was last modified 1 year and 346 days ago.

Previous Next


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