GNU bug report logs - #54847
[PATCH] gnu: Add python-hypy-utils.

Previous Next

Package: guix-patches;

Reported by: "Wamm K. D" <jaft.r <at> outlook.com>

Date: Mon, 11 Apr 2022 07:54: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 54847 in the body.
You can then email your comments to 54847 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#54847; Package guix-patches. (Mon, 11 Apr 2022 07:54:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to "Wamm K. D" <jaft.r <at> outlook.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 11 Apr 2022 07:54:01 GMT) Full text and rfc822 format available.

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

From: "Wamm K. D" <jaft.r <at> outlook.com>
To: guix-patches <at> gnu.org
Cc: "Wamm K. D" <jaft.r <at> outlook.com>
Subject: [PATCH] gnu: Add python-hypy-utils.
Date: Mon, 11 Apr 2022 02:48:25 -0500
---
The end goal is to add hyfetch but it has python-hypy-utils, as a dependency,
so sending this, first.

 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 55705ab2ea..11f6511d6c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -118,6 +118,7 @@
 ;;; Copyright © 2022 Aleksandr Vityazev <avityazev <at> posteo.org>
 ;;; Copyright © 2022 Evgeny Pisemsky <evgeny <at> pisemsky.com>
 ;;; Copyright © 2022 drozdov <drozdov <at> portalenergy.tech>
+;;; Copyright © 2022 Wamm K. D. <jaft.r <at> outlook.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -29364,3 +29365,19 @@ (define-public python-aiopg
 database from the asyncio (PEP-3156/tulip) framework.  It wraps
 asynchronous features of the Psycopg database driver.")
     (license license:bsd-3)))
+
+(define-public python-hypy-utils
+  (package
+    (name "python-hypy-utils")
+    (version "1.0.6")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "hypy_utils" version))
+              (sha256 (base32
+                       "05csk0x8ivavq88x457cq5hwjcdirfbkzj7bbg5qgnpnf2dxxhiw"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/hykilpikonna/HyPyUtils")
+    (synopsis "Python utility functions for HyDEV")
+    (description "This module provides Python utility functions for modifying
+and setting the color of terminal output, via HyDEV.")
+    (license license:expat)))
-- 
2.35.1





Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 08:03:02 GMT) Full text and rfc822 format available.

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

From: "Wamm K. D" <jaft.r <at> outlook.com>
To: 54847 <at> debbugs.gnu.org
Cc: "Wamm K. D" <jaft.r <at> outlook.com>
Subject: [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 03:01:35 -0500
---
 gnu/packages/admin.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 1db04adf71..e15d443771 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -47,6 +47,7 @@
 ;;; Copyright © 2021 Maxime Devos <maximedevos <at> telenet.be>
 ;;; Copyright © 2021 Petr Hodina <phodina <at> protonmail.com>
 ;;; Copyright © 2021 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
+;;; Copyright © 2022 Wamm K. D. <jaft.r <at> outlook.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3713,6 +3714,33 @@ (define-public neofetch
 you are running, what theme or icon set you are using, etc.")
     (license license:expat)))
 
+(define-public hyfetch
+  (package
+    (name "hyfetch")
+    (version "1.0.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "HyFetch" version))
+        (sha256
+          (base32 "1bfkycdhsyzkk6q24gdy1xwvyz0rvkr7xk2khbn74b3nk6kp83r2"))))
+    (build-system python-build-system)
+    (propagated-inputs (list python-hypy-utils python-typing-extensions))
+    (arguments `(#:phases (modify-phases %standard-phases
+                            (add-before 'build 'set-HOME
+                              (lambda _  ;; Tries to set files in .config
+                                (setenv "HOME" "/tmp"))))))
+    (home-page "https://github.com/hykilpikonna/HyFetch")
+    (synopsis "@code{neofetch} with pride flags <3")
+    (description "HyFetch is a command-line system information tool fork of
+@code{neofetch}.  HyFetch displays information about your system next to an
+image, your OS logo, or any ASCII file of your choice.  The ASCII representation
+is then colored in the pattern of the pride flag of your choice.  The main
+purpose of HyFetch is to be used in screenshots to show other users what
+operating system or distribution you are running, what theme or icon set you are
+using, etc.")
+    (license license:expat)))
+
 (define-public screenfetch
   (package
     (name "screenfetch")
-- 
2.35.1





Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 09:03:01 GMT) Full text and rfc822 format available.

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

From: Maxime Devos <maximedevos <at> telenet.be>
To: "Wamm K. D" <jaft.r <at> outlook.com>, 54847 <at> debbugs.gnu.org
Subject: Re: [bug#54847] [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 11:02:56 +0200
[Message part 1 (text/plain, inline)]
Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> +    (propagated-inputs (list python-hypy-utils python-typing-extensions))

Do these need to be propagated?

Greetings,
Maxime
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 09:05:01 GMT) Full text and rfc822 format available.

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

From: Maxime Devos <maximedevos <at> telenet.be>
To: "Wamm K. D" <jaft.r <at> outlook.com>, 54847 <at> debbugs.gnu.org
Subject: Re: [bug#54847] [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 11:04:08 +0200
[Message part 1 (text/plain, inline)]
Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> +    (arguments `(#:phases (modify-phases %standard-phases
> +                            (add-before 'build 'set-HOME
> +                              (lambda _  ;; Tries to set files in .config
> +                                (setenv "HOME" "/tmp"))))))

neofetch has #:tests? #false, #:make-flags and no set-home phase.  How
come this fork doesn't?

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 09:07:02 GMT) Full text and rfc822 format available.

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

From: Maxime Devos <maximedevos <at> telenet.be>
To: "Wamm K. D" <jaft.r <at> outlook.com>, 54847 <at> debbugs.gnu.org
Subject: Re: [bug#54847] [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 11:06:15 +0200
[Message part 1 (text/plain, inline)]
Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> +    (synopsis "@code{neofetch} with pride flags <3")

You are not restricted to ASCII, you can write 🫀, 💓, 💔, 💕, 💖, 💗,
💘, 💙, 💚, 💛, 💜, 💝 or 💞 instead of <3.

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 09:07:02 GMT) Full text and rfc822 format available.

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

From: Maxime Devos <maximedevos <at> telenet.be>
To: "Wamm K. D" <jaft.r <at> outlook.com>, 54847 <at> debbugs.gnu.org
Subject: Re: [bug#54847] [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 11:06:54 +0200
[Message part 1 (text/plain, inline)]
Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> +    (synopsis "@code{neofetch} with pride flags <3")

What does <3 mean here?

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 09:09:02 GMT) Full text and rfc822 format available.

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

From: Maxime Devos <maximedevos <at> telenet.be>
To: "Wamm K. D" <jaft.r <at> outlook.com>, 54847 <at> debbugs.gnu.org
Subject: Re: [bug#54847] [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 11:08:43 +0200
[Message part 1 (text/plain, inline)]
Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> any ASCII file of your choice

Is it restricted to the ASCII character set, or does any text file do
and can I put 🫀 in the file as well?

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 09:13:02 GMT) Full text and rfc822 format available.

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

From: Maxime Devos <maximedevos <at> telenet.be>
To: "Wamm K. D" <jaft.r <at> outlook.com>, 54847 <at> debbugs.gnu.org
Subject: Re: [bug#54847] [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 11:11:59 +0200
[Message part 1 (text/plain, inline)]
Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> +    (home-page "https://github.com/hykilpikonna/HyFetch")

It's a fork.  Is there some web page tracking upstreaming progress?
E.g., neofetch could suppport multiple modes, the default 'neofetch'
when running the 'bin/neofetch' binary, 'hyfetch' when running
'bin/hyfetch', etc.

Greetings,
Maxime.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Mon, 11 Apr 2022 17:09:02 GMT) Full text and rfc822 format available.

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

From: Jaft <jaft.r <at> outlook.com>
To: "54847 <at> debbugs.gnu.org" <54847 <at> debbugs.gnu.org>, 
 Maxime Devos <maximedevos <at> telenet.be>
Subject: Re: [bug#54847] [PATCH] gnu: Add hyfetch.
Date: Mon, 11 Apr 2022 17:07:23 +0000 (UTC)
> On Monday, April 11, 2022, 04:02:59 AM CDT, Maxime Devos <maximedevos <at> telenet.be> wrote:
>
> Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> > +    (propagated-inputs (list python-hypy-utils python-typing-extensions))
>
> Do these need to be propagated?

Fair question; that was just what ~guix import pypi hyfetch --recursive~ had given me but I tried it out, again, with them just as ~inputs~ and it worked just fine so I'll get that adjusted.


> Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> > +    (arguments `(#:phases (modify-phases %standard-phases
> > +                            (add-before 'build 'set-HOME
> > +                              (lambda _  ;; Tries to set files in .config
> > +                                (setenv "HOME" "/tmp"))))))
>
> neofetch has #:tests? #false, #:make-flags and no set-home phase.  How
> come this fork doesn't?

If I were to hazard a guess, because this is a Python package/module while the other is built with ~make~? I'm afraid I don't know enough to say, otherwise; I can say that the package was able to build alright and run fine without disabling tests.


> Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> > +    (synopsis "@code{neofetch} with pride flags <3")
>
> You are not restricted to ASCII, you can write 🫀, 💓, 💔, 💕, 💖, 💗,
> 💘, 💙, 💚, 💛, 💜, 💝 or 💞 instead of <3.
 >
> What does <3 mean here?

Neat; I didn't know that so thanks for the heads up. I think it's just a heart, to be affectionate; it's the synopsis given for the module on pypi.org and, so, was pulled in by the import. I always try to stick as much as possible to the creator's words for their own software so I just left it in but it's definitely far from mandatory in describing what it is the package does. I can remove it, if you'd like, or swap the ASCII representation to one of the emojis you suggested, if that might make it less ambiguous.


> Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> > any ASCII file of your choice
>
> Is it restricted to the ASCII character set, or does any text file do
> and can I put 🫀 in the file as well?

Ummm, another really good question. I was assuming, as its a fork of =neofetch=, that the same rules would apply and, so, just borrowed from the =neofetch= description, but, checking this out, I'm not sure if =hyfetch= has this functionality. I'll remove it from there when I update the ~inputs~.


> Wamm K. D schreef op ma 11-04-2022 om 03:01 [-0500]:
> > +    (home-page "https://github.com/hykilpikonna/HyFetch")
>
> It's a fork.  Is there some web page tracking upstreaming progress?
> E.g., neofetch could suppport multiple modes, the default 'neofetch'
> when running the 'bin/neofetch' binary, 'hyfetch' when running
> 'bin/hyfetch', etc.
>
> Greetings,
>
> Maxime.

Outside of the GitHub page itself, not that I know of. I'd probably need a bit more guidance on how to set something like this up, though. That being said, the build process between the two may be more different than similar as =hyfetch= is using Python while =neofetch= is just using a plain Makefile; the old Makefile for =neofetch= is still in the repo., unaltered, so I'm not sure how much direct overlap with the original code still exists, for =hyfetch=. I'm not sure how much of a difference any of that makes but thought I'd, at least, make note.




Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Tue, 19 Apr 2022 10:05:01 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Jaft <jaft.r <at> outlook.com>
Cc: Maxime Devos <maximedevos <at> telenet.be>,
 "54847 <at> debbugs.gnu.org" <54847 <at> debbugs.gnu.org>
Subject: Re: bug#54847: [PATCH] gnu: Add python-hypy-utils.
Date: Tue, 19 Apr 2022 12:04:41 +0200
Hi Jaft,

Could you send updating patches, updating some of the suggestions
Maxime made?

Thanks in advance!

Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Tue, 19 Apr 2022 18:36:02 GMT) Full text and rfc822 format available.

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

From: Jaft <jaft.r <at> outlook.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: Maxime Devos <maximedevos <at> telenet.be>,
 "54847 <at> debbugs.gnu.org" <54847 <at> debbugs.gnu.org>
Subject: Re: bug#54847: [PATCH] gnu: Add python-hypy-utils.
Date: Tue, 19 Apr 2022 18:36:55 +0000 (UTC)
Sure thing! There were some threads that Maxime had inquired about that I thought he might provide further guidance on since I wasn't sure how he'd want to proceed with them but I'll get together the changes we have agree upon, so far, and send out an updated patch with them, later today.






> On Tuesday, April 19, 2022, 05:04:47 AM CDT, Ludovic Courtès <ludo <at> gnu.org> wrote: 
>
>
>
>
>
> Hi Jaft,
>
> Could you send updating patches, updating some of the suggestions
> Maxime made?
>
> Thanks in advance!
>
> Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Wed, 20 Apr 2022 18:17:02 GMT) Full text and rfc822 format available.

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

From: "Wamm K. D" <jaft.r <at> outlook.com>
To: 54847 <at> debbugs.gnu.org
Cc: ludo <at> gnu.org, "Wamm K. D" <jaft.r <at> outlook.com>, maximedevos <at> telenet.be
Subject: [PATCH v2] gnu: Add python-hypy-utils.
Date: Wed, 20 Apr 2022 13:15:03 -0500
---
There's been new commits since I first sent this patch so just resending, after
pull.

 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9a5d311680..c242e1fa00 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -119,6 +119,7 @@
 ;;; Copyright © 2022 Evgeny Pisemsky <evgeny <at> pisemsky.com>
 ;;; Copyright © 2022 drozdov <drozdov <at> portalenergy.tech>
 ;;; Copyright © 2022 Peter Polidoro <peter <at> polidoro.io>
+;;; Copyright © 2022 Wamm K. D. <jaft.r <at> outlook.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -29534,3 +29535,19 @@ (define-public python-sre-yield
 uses the parsed regular expression, so you get a much more accurate result
 than trying to just split strings.")
     (license license:asl2.0)))
+
+(define-public python-hypy-utils
+  (package
+    (name "python-hypy-utils")
+    (version "1.0.6")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "hypy_utils" version))
+              (sha256 (base32
+                       "05csk0x8ivavq88x457cq5hwjcdirfbkzj7bbg5qgnpnf2dxxhiw"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/hykilpikonna/HyPyUtils")
+    (synopsis "Python utility functions for HyDEV")
+    (description "This module provides Python utility functions for modifying
+and setting the color of terminal output, via HyDEV.")
+    (license license:expat)))
-- 
2.35.1





Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Wed, 20 Apr 2022 18:19:01 GMT) Full text and rfc822 format available.

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

From: "Wamm K. D" <jaft.r <at> outlook.com>
To: 54847 <at> debbugs.gnu.org
Cc: ludo <at> gnu.org, "Wamm K. D" <jaft.r <at> outlook.com>, maximedevos <at> telenet.be
Subject: [PATCH v2] gnu: Add hyfetch.
Date: Wed, 20 Apr 2022 13:18:25 -0500
---
 gnu/packages/admin.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 94636faf8b..a200050d97 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -47,6 +47,7 @@
 ;;; Copyright © 2021 Maxime Devos <maximedevos <at> telenet.be>
 ;;; Copyright © 2021 Petr Hodina <phodina <at> protonmail.com>
 ;;; Copyright © 2021 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
+;;; Copyright © 2022 Wamm K. D. <jaft.r <at> outlook.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3733,6 +3734,32 @@ (define-public neofetch
 you are running, what theme or icon set you are using, etc.")
     (license license:expat)))
 
+(define-public hyfetch
+  (package
+    (name "hyfetch")
+    (version "1.0.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "HyFetch" version))
+        (sha256
+          (base32 "1bfkycdhsyzkk6q24gdy1xwvyz0rvkr7xk2khbn74b3nk6kp83r2"))))
+    (build-system python-build-system)
+    (inputs (list python-hypy-utils python-typing-extensions))
+    (arguments `(#:phases (modify-phases %standard-phases
+                            (add-before 'build 'set-HOME
+                              (lambda _  ;; Tries to set files in .config
+                                (setenv "HOME" "/tmp"))))))
+    (home-page "https://github.com/hykilpikonna/HyFetch")
+    (synopsis "@code{neofetch} with pride flags <3")
+    (description "HyFetch is a command-line system information tool fork of
+@code{neofetch}.  HyFetch displays information about your system next to your
+OS logo in ASCII representation.  The ASCII representation is then colored in
+the pattern of the pride flag of your choice.  The main purpose of HyFetch is to
+be used in screenshots to show other users what operating system or distribution
+you are running, what theme or icon set you are using, etc.")
+    (license license:expat)))
+
 (define-public screenfetch
   (package
     (name "screenfetch")
-- 
2.35.1





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 27 Apr 2022 21:18:02 GMT) Full text and rfc822 format available.

Notification sent to "Wamm K. D" <jaft.r <at> outlook.com>:
bug acknowledged by developer. (Wed, 27 Apr 2022 21:18:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: "Wamm K. D" <jaft.r <at> outlook.com>
Cc: maximedevos <at> telenet.be, 54847-done <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add python-hypy-utils.
Date: Wed, 27 Apr 2022 23:17:41 +0200
Hi,

"Wamm K. D" <jaft.r <at> outlook.com> skribis:

> ---
> There's been new commits since I first sent this patch so just resending, after
> pull.
>
>  gnu/packages/python-xyz.scm | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)

Added a commit log and applied it, thanks!

Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#54847; Package guix-patches. (Wed, 27 Apr 2022 21:20:01 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: "Wamm K. D" <jaft.r <at> outlook.com>
Cc: maximedevos <at> telenet.be, 54847-done <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add hyfetch.
Date: Wed, 27 Apr 2022 23:19:09 +0200
"Wamm K. D" <jaft.r <at> outlook.com> skribis:

> ---
>  gnu/packages/admin.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)

Applied, thanks!




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

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

Previous Next


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