unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#69998: [PATCH guile-web] libraries: Use guile-gnunet’s real name.
@ 2024-03-25 12:08 Florian Pelz
  2024-04-26 13:50 ` Maxim Cournoyer
  0 siblings, 1 reply; 4+ messages in thread
From: Florian Pelz @ 2024-03-25 12:08 UTC (permalink / raw)
  To: 69998; +Cc: Florian Pelz

* website/apps/base/libraries-page.scm (guix->package)[real-name]:
Add special case.
---
 website/apps/base/libraries-page.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/apps/base/libraries-page.scm b/website/apps/base/libraries-page.scm
index 6dae8cc..371060e 100644
--- a/website/apps/base/libraries-page.scm
+++ b/website/apps/base/libraries-page.scm
@@ -71,7 +71,7 @@
   "Return the <package> record corresponding to PKG, a Guix package."
   (define real-name
     (let ((name (guix:package-name pkg)))
-      (cond ((member name '("guile-bash" "guile-wm"))
+      (cond ((member name '("guile-bash" "guile-gnunet" "guile-wm"))
              name)
             ((or (string-prefix? "guile-" name)
                  (string-prefix? "guile2.0-" name)

base-commit: 3df4c6d456c92befe672c815a40c645fec496b1f
-- 
2.41.0






^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#69998: [PATCH guile-web] libraries: Use guile-gnunet’s real name.
  2024-03-25 12:08 bug#69998: [PATCH guile-web] libraries: Use guile-gnunet’s real name Florian Pelz
@ 2024-04-26 13:50 ` Maxim Cournoyer
  2024-04-27  7:22   ` pelzflorian (Florian Pelz)
  0 siblings, 1 reply; 4+ messages in thread
From: Maxim Cournoyer @ 2024-04-26 13:50 UTC (permalink / raw)
  To: Florian Pelz; +Cc: 69998

Hi Florian,

Florian Pelz <pelzflorian@pelzflorian.de> writes:

> * website/apps/base/libraries-page.scm (guix->package)[real-name]:
> Add special case.
> ---
>  website/apps/base/libraries-page.scm | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/website/apps/base/libraries-page.scm b/website/apps/base/libraries-page.scm
> index 6dae8cc..371060e 100644
> --- a/website/apps/base/libraries-page.scm
> +++ b/website/apps/base/libraries-page.scm
> @@ -71,7 +71,7 @@
>    "Return the <package> record corresponding to PKG, a Guix package."
>    (define real-name
>      (let ((name (guix:package-name pkg)))
> -      (cond ((member name '("guile-bash" "guile-wm"))
> +      (cond ((member name '("guile-bash" "guile-gnunet" "guile-wm"))
>               name)
>              ((or (string-prefix? "guile-" name)
>                   (string-prefix? "guile2.0-" name)
>
> base-commit: 3df4c6d456c92befe672c815a40c645fec496b1f

To which repo is this to be applied?  I expected 'guix-artwork', which
holds the website, but it has no such commit nor libraries-page.scm
file.

-- 
Thanks,
Maxim





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#69998: [PATCH guile-web] libraries: Use guile-gnunet’s real name.
  2024-04-26 13:50 ` Maxim Cournoyer
@ 2024-04-27  7:22   ` pelzflorian (Florian Pelz)
  2024-05-08 19:52     ` Maxim Cournoyer
  0 siblings, 1 reply; 4+ messages in thread
From: pelzflorian (Florian Pelz) @ 2024-04-27  7:22 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 69998

Hello Maxim, this patch is confusingly about the Guile website, not
Guix. ;)  That is https://git.savannah.gnu.org/git/guile/guile-web.git

It uses Guix to generate the Guile package list, where guile-gnunet has
homepage https://gnu.org/software/guix and is thus called Guix in the
Guile website library page.  This patch special-cases guile-gnunet like
other special-case libraries.

Thank you for looking at the patch, though I do not know if you can push
to guile-web.git.

Regards,
Florian





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#69998: [PATCH guile-web] libraries: Use guile-gnunet’s real name.
  2024-04-27  7:22   ` pelzflorian (Florian Pelz)
@ 2024-05-08 19:52     ` Maxim Cournoyer
  0 siblings, 0 replies; 4+ messages in thread
From: Maxim Cournoyer @ 2024-05-08 19:52 UTC (permalink / raw)
  To: pelzflorian (Florian Pelz); +Cc: 69998

Hi Florian,

"pelzflorian (Florian Pelz)" <pelzflorian@pelzflorian.de> writes:

> Hello Maxim, this patch is confusingly about the Guile website, not
> Guix. ;)  That is https://git.savannah.gnu.org/git/guile/guile-web.git
>
> It uses Guix to generate the Guile package list, where guile-gnunet has
> homepage https://gnu.org/software/guix and is thus called Guix in the
> Guile website library page.  This patch special-cases guile-gnunet like
> other special-case libraries.
>
> Thank you for looking at the patch, though I do not know if you can push
> to guile-web.git.

Nope; you'll want to ping one of the Guile committers, sorry about that!

-- 
Thanks,
Maxim





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-05-08 19:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-25 12:08 bug#69998: [PATCH guile-web] libraries: Use guile-gnunet’s real name Florian Pelz
2024-04-26 13:50 ` Maxim Cournoyer
2024-04-27  7:22   ` pelzflorian (Florian Pelz)
2024-05-08 19:52     ` Maxim Cournoyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).