* [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1.
@ 2022-03-06 5:45 Fatima Toothpaste via Guix-patches via
2022-03-11 22:11 ` Ludovic Courtès
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Fatima Toothpaste via Guix-patches via @ 2022-03-06 5:45 UTC (permalink / raw)
To: 54273; +Cc: Fatima Toothpaste
* gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1.
[arguments]: Delete check phase.
[inputs]: Add bash-minimal.
[home-page]: Update URL.
---
gnu/packages/nicotine.scm | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/nicotine.scm b/gnu/packages/nicotine.scm
index 8e194697de..6890c26cb6 100644
--- a/gnu/packages/nicotine.scm
+++ b/gnu/packages/nicotine.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
+;;; Copyright © 2022 Fatima Toothpaste <fatimatoothpaste@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -21,6 +22,7 @@ (define-module (gnu packages nicotine)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system python)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages glib)
#:use-module (gnu packages gettext)
#:use-module (gnu packages gtk)
@@ -30,14 +32,14 @@ (define-module (gnu packages nicotine)
(define-public nicotine+
(package
(name "nicotine+")
- (version "2.1.2")
+ (version "3.2.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Nicotine-Plus/nicotine-plus")
(commit version)))
(file-name (git-file-name name version))
- (sha256 (base32 "18rra8yqjr10z23chzcp53ncbd5fhm0iqgqxpbxfq7a10za02v6l"))))
+ (sha256 (base32 "1x08z5lvkdl62dkc11vrsackgzsh1vr9vp3vgsgfzjyrvlsybmfw"))))
(build-system python-build-system)
(arguments
`(#:imported-modules ((guix build glib-or-gtk-build-system)
@@ -60,13 +62,16 @@ (define-public nicotine+
(add-after 'wrap-program 'glib-or-gtk-wrap
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
(add-after 'glib-or-gtk-wrap 'glib-or-gtk-compile-schemas
- (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)))))
+ (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
+ ;;Tests require network connection
+ (delete 'check))))
(inputs
- (list gtk+ python-pygobject python-pytaglib))
+ ;;TODO: Add libayatana-appindicator
+ (list bash-minimal gtk+ python-pygobject python-pytaglib))
(native-inputs
`(("python-pytest" ,python-pytest)
("gettext" ,gettext-minimal)))
- (home-page "https://nicotine-plus.github.io/nicotine-plus/")
+ (home-page "https://nicotine-plus.org/nicotine-plus/")
(synopsis "Graphical client for Soulseek")
(description
"Nicotine+ is a graphical client for the Soulseek peer-to-peer
--
2.34.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1.
2022-03-06 5:45 [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1 Fatima Toothpaste via Guix-patches via
@ 2022-03-11 22:11 ` Ludovic Courtès
2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
2022-03-12 13:59 ` [bug#54273] [PATCH V2] gnu : nicotine+: Update " Fatima Toothpaste via Guix-patches via
` (2 subsequent siblings)
3 siblings, 1 reply; 9+ messages in thread
From: Ludovic Courtès @ 2022-03-11 22:11 UTC (permalink / raw)
To: Fatima Toothpaste; +Cc: 54273
Hi,
Fatima Toothpaste <fatimatoothpaste@disroot.org> skribis:
> * gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1.
> [arguments]: Delete check phase.
> [inputs]: Add bash-minimal.
> [home-page]: Update URL.
[...]
> + ;;Tests require network connection
> + (delete 'check))))
Tests should rather be disabled with #:tests? #f.
However, could you check if we can just skip (or tweak?) the tests that
specifically depend on networking?
The rest of the patch looks good to me.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#54273] [PATCH V2] gnu : nicotine+: Update to 3.2.1.
2022-03-06 5:45 [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1 Fatima Toothpaste via Guix-patches via
2022-03-11 22:11 ` Ludovic Courtès
@ 2022-03-12 13:59 ` Fatima Toothpaste via Guix-patches via
2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
2022-03-13 15:41 ` [bug#54273] [PATCH V3] " Fatima Toothpaste via Guix-patches via
3 siblings, 0 replies; 9+ messages in thread
From: Fatima Toothpaste via Guix-patches via @ 2022-03-12 13:59 UTC (permalink / raw)
To: 54273; +Cc: Fatima Toothpaste
* gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1.
[source]: Delete network requried tests in snippet.
[arguments]: Remove trailing #t.
Replae 'check to use python unittest module.
[inputs]: Add bash-minimal.
[native-inputs]: Remove python-pytest. Add python.
[home-page]: Update URL.
---
gnu/packages/nicotine.scm | 29 ++++++++++++++++++-----------
1 file changed, 18 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/nicotine.scm b/gnu/packages/nicotine.scm
index 8e194697de..62ad2bb9bf 100644
--- a/gnu/packages/nicotine.scm
+++ b/gnu/packages/nicotine.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
+;;; Copyright © 2022 Fatima Toothpaste <fatimatoothpaste@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -21,23 +22,27 @@ (define-module (gnu packages nicotine)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system python)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages glib)
#:use-module (gnu packages gettext)
#:use-module (gnu packages gtk)
- #:use-module (gnu packages check)
- #:use-module (gnu packages mp3))
+ #:use-module (gnu packages mp3)
+ #:use-module (gnu packages python))
(define-public nicotine+
(package
(name "nicotine+")
- (version "2.1.2")
+ (version "3.2.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Nicotine-Plus/nicotine-plus")
(commit version)))
(file-name (git-file-name name version))
- (sha256 (base32 "18rra8yqjr10z23chzcp53ncbd5fhm0iqgqxpbxfq7a10za02v6l"))))
+ (sha256 (base32 "1x08z5lvkdl62dkc11vrsackgzsh1vr9vp3vgsgfzjyrvlsybmfw"))
+ (modules '((guix build utils)))
+ (snippet '(begin
+ (delete-file-recursively "test/integration")))))
(build-system python-build-system)
(arguments
`(#:imported-modules ((guix build glib-or-gtk-build-system)
@@ -55,18 +60,20 @@ (define-public nicotine+
"/bin/nicotine"))
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
(wrap-program prog
- `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
- #t)))
+ `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))))
(add-after 'wrap-program 'glib-or-gtk-wrap
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
(add-after 'glib-or-gtk-wrap 'glib-or-gtk-compile-schemas
- (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)))))
+ (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
+ (replace 'check
+ (lambda _
+ (invoke "python" "-m" "unittest"))))))
(inputs
- (list gtk+ python-pygobject python-pytaglib))
+ ;;TODO: Add libayatana-appindicator
+ (list bash-minimal gtk+ python-pygobject python-pytaglib))
(native-inputs
- `(("python-pytest" ,python-pytest)
- ("gettext" ,gettext-minimal)))
- (home-page "https://nicotine-plus.github.io/nicotine-plus/")
+ (list python gettext-minimal))
+ (home-page "https://nicotine-plus.org/")
(synopsis "Graphical client for Soulseek")
(description
"Nicotine+ is a graphical client for the Soulseek peer-to-peer
--
2.34.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1.
2022-03-11 22:11 ` Ludovic Courtès
@ 2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
0 siblings, 0 replies; 9+ messages in thread
From: Fatima Toothpaste via Guix-patches via @ 2022-03-13 1:14 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 54273
Sorry, I fixed what you said, and other messes i made.
Thanks for reviewing.
On 3/12/22 07:11, Ludovic Courtès wrote:
> Hi,
>
> Fatima Toothpaste <fatimatoothpaste@disroot.org> skribis:
>
>> * gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1.
>> [arguments]: Delete check phase.
>> [inputs]: Add bash-minimal.
>> [home-page]: Update URL.
> [...]
>
>> + ;;Tests require network connection
>> + (delete 'check))))
> Tests should rather be disabled with #:tests? #f.
>
> However, could you check if we can just skip (or tweak?) the tests that
> specifically depend on networking?
>
> The rest of the patch looks good to me.
>
> Thanks,
> Ludo’.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#54273] [PATCH V2] gnu : nicotine+: Update to 3.2.1.
2022-03-06 5:45 [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1 Fatima Toothpaste via Guix-patches via
2022-03-11 22:11 ` Ludovic Courtès
2022-03-12 13:59 ` [bug#54273] [PATCH V2] gnu : nicotine+: Update " Fatima Toothpaste via Guix-patches via
@ 2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
2022-03-13 11:06 ` Maxime Devos
2022-03-13 15:41 ` [bug#54273] [PATCH V3] " Fatima Toothpaste via Guix-patches via
3 siblings, 1 reply; 9+ messages in thread
From: Fatima Toothpaste via Guix-patches via @ 2022-03-13 1:14 UTC (permalink / raw)
To: ludo; +Cc: 54273, Fatima Toothpaste
* gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1.
[source]: Delete network requried tests in snippet.
[arguments]: Remove trailing #t.
Replae 'check to use python unittest module.
[inputs]: Add bash-minimal.
[native-inputs]: Remove python-pytest. Add python.
[home-page]: Update URL.
---
gnu/packages/nicotine.scm | 29 ++++++++++++++++++-----------
1 file changed, 18 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/nicotine.scm b/gnu/packages/nicotine.scm
index 8e194697de..62ad2bb9bf 100644
--- a/gnu/packages/nicotine.scm
+++ b/gnu/packages/nicotine.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
+;;; Copyright © 2022 Fatima Toothpaste <fatimatoothpaste@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -21,23 +22,27 @@ (define-module (gnu packages nicotine)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system python)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages glib)
#:use-module (gnu packages gettext)
#:use-module (gnu packages gtk)
- #:use-module (gnu packages check)
- #:use-module (gnu packages mp3))
+ #:use-module (gnu packages mp3)
+ #:use-module (gnu packages python))
(define-public nicotine+
(package
(name "nicotine+")
- (version "2.1.2")
+ (version "3.2.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Nicotine-Plus/nicotine-plus")
(commit version)))
(file-name (git-file-name name version))
- (sha256 (base32 "18rra8yqjr10z23chzcp53ncbd5fhm0iqgqxpbxfq7a10za02v6l"))))
+ (sha256 (base32 "1x08z5lvkdl62dkc11vrsackgzsh1vr9vp3vgsgfzjyrvlsybmfw"))
+ (modules '((guix build utils)))
+ (snippet '(begin
+ (delete-file-recursively "test/integration")))))
(build-system python-build-system)
(arguments
`(#:imported-modules ((guix build glib-or-gtk-build-system)
@@ -55,18 +60,20 @@ (define-public nicotine+
"/bin/nicotine"))
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
(wrap-program prog
- `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
- #t)))
+ `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))))
(add-after 'wrap-program 'glib-or-gtk-wrap
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
(add-after 'glib-or-gtk-wrap 'glib-or-gtk-compile-schemas
- (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)))))
+ (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
+ (replace 'check
+ (lambda _
+ (invoke "python" "-m" "unittest"))))))
(inputs
- (list gtk+ python-pygobject python-pytaglib))
+ ;;TODO: Add libayatana-appindicator
+ (list bash-minimal gtk+ python-pygobject python-pytaglib))
(native-inputs
- `(("python-pytest" ,python-pytest)
- ("gettext" ,gettext-minimal)))
- (home-page "https://nicotine-plus.github.io/nicotine-plus/")
+ (list python gettext-minimal))
+ (home-page "https://nicotine-plus.org/")
(synopsis "Graphical client for Soulseek")
(description
"Nicotine+ is a graphical client for the Soulseek peer-to-peer
--
2.34.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#54273] [PATCH V2] gnu : nicotine+: Update to 3.2.1.
2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
@ 2022-03-13 11:06 ` Maxime Devos
2022-03-13 15:45 ` Fatima Toothpaste via Guix-patches via
0 siblings, 1 reply; 9+ messages in thread
From: Maxime Devos @ 2022-03-13 11:06 UTC (permalink / raw)
To: Fatima Toothpaste, ludo; +Cc: 54273
[-- Attachment #1: Type: text/plain, Size: 566 bytes --]
Fatima Toothpaste via Guix-patches via schreef op zo 13-03-2022 om
10:14 [+0900]:
> + (replace 'check
> + (lambda _
> + (invoke "python" "-m" "unittest"))))))
"./pre-inst-env guix lint nicotine+" would warn about this.
To make the '--without-tests' package transformatin work, this needs to
be:
> + (replace 'check
> + (lambda* (#:key tests? #:allow-other-keys)
> + (when tests?
> + (invoke "python" "-m" "unittest")))))))
Greetings,
Maxime.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [bug#54273] [PATCH V3] gnu : nicotine+: Update to 3.2.1.
2022-03-06 5:45 [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1 Fatima Toothpaste via Guix-patches via
` (2 preceding siblings ...)
2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
@ 2022-03-13 15:41 ` Fatima Toothpaste via Guix-patches via
2022-03-15 9:52 ` bug#54273: [PATCH] gnu: nicotine+: update " Ludovic Courtès
3 siblings, 1 reply; 9+ messages in thread
From: Fatima Toothpaste via Guix-patches via @ 2022-03-13 15:41 UTC (permalink / raw)
To: maximedevos, ludo; +Cc: 54273, Fatima Toothpaste
* gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1.
[source]: Delete network requried tests in snippet.
[arguments]: Remove trailing #t.
Replae 'check phase to run proper test.
[inputs]: Add bash-minimal, gspell, libappindicator.
[native-inputs]: Remove python-pytest. Add xvfb-run.
[home-page]: Update URL.
---
gnu/packages/nicotine.scm | 31 ++++++++++++++++++++-----------
1 file changed, 20 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/nicotine.scm b/gnu/packages/nicotine.scm
index 8e194697de..d46c5603f3 100644
--- a/gnu/packages/nicotine.scm
+++ b/gnu/packages/nicotine.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
+;;; Copyright © 2022 Fatima Toothpaste <fatimatoothpaste@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -21,23 +22,29 @@ (define-module (gnu packages nicotine)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system python)
+ #:use-module (gnu packages bash)
+ #:use-module (gnu packages freedesktop)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
#:use-module (gnu packages gettext)
#:use-module (gnu packages gtk)
- #:use-module (gnu packages check)
- #:use-module (gnu packages mp3))
+ #:use-module (gnu packages mp3)
+ #:use-module (gnu packages xorg))
(define-public nicotine+
(package
(name "nicotine+")
- (version "2.1.2")
+ (version "3.2.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Nicotine-Plus/nicotine-plus")
(commit version)))
(file-name (git-file-name name version))
- (sha256 (base32 "18rra8yqjr10z23chzcp53ncbd5fhm0iqgqxpbxfq7a10za02v6l"))))
+ (sha256 (base32 "1x08z5lvkdl62dkc11vrsackgzsh1vr9vp3vgsgfzjyrvlsybmfw"))
+ (modules '((guix build utils)))
+ (snippet '(begin
+ (delete-file-recursively "test/integration")))))
(build-system python-build-system)
(arguments
`(#:imported-modules ((guix build glib-or-gtk-build-system)
@@ -55,18 +62,20 @@ (define-public nicotine+
"/bin/nicotine"))
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
(wrap-program prog
- `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
- #t)))
+ `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))))
(add-after 'wrap-program 'glib-or-gtk-wrap
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))
(add-after 'glib-or-gtk-wrap 'glib-or-gtk-compile-schemas
- (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas)))))
+ (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-compile-schemas))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "xvfb-run" "python" "-m" "unittest")))))))
(inputs
- (list gtk+ python-pygobject python-pytaglib))
+ (list bash-minimal gspell gtk+ python-pygobject libappindicator python-pytaglib))
(native-inputs
- `(("python-pytest" ,python-pytest)
- ("gettext" ,gettext-minimal)))
- (home-page "https://nicotine-plus.github.io/nicotine-plus/")
+ (list gettext-minimal xvfb-run))
+ (home-page "https://nicotine-plus.org/")
(synopsis "Graphical client for Soulseek")
(description
"Nicotine+ is a graphical client for the Soulseek peer-to-peer
--
2.34.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [bug#54273] [PATCH V2] gnu : nicotine+: Update to 3.2.1.
2022-03-13 11:06 ` Maxime Devos
@ 2022-03-13 15:45 ` Fatima Toothpaste via Guix-patches via
0 siblings, 0 replies; 9+ messages in thread
From: Fatima Toothpaste via Guix-patches via @ 2022-03-13 15:45 UTC (permalink / raw)
To: Maxime Devos, ludo; +Cc: 54273
Sorry, I forgot to lint. By the way, I also included some optional
dependencies on new patch, which i excluded on purpose before.
gspell: spell checking doesn't work on my machine. However, gtk and
gspell both are loaded with pygobject, and gtk works fine. so it might
be the problem of nicotine+, or might work on other environment.
libappindicator: i excluded it because i heard it is unmaintained and
should be replaced with libayatana-appindicator. But, still though there
are some packages depend on libappindicator in guix. So, Just using
libappindicator for a now and replacing it all together with
libayatana-appindicator someday doesn't seems so bad to me, What do you
think?
^ permalink raw reply [flat|nested] 9+ messages in thread
* bug#54273: [PATCH] gnu: nicotine+: update to 3.2.1.
2022-03-13 15:41 ` [bug#54273] [PATCH V3] " Fatima Toothpaste via Guix-patches via
@ 2022-03-15 9:52 ` Ludovic Courtès
0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2022-03-15 9:52 UTC (permalink / raw)
To: Fatima Toothpaste; +Cc: maximedevos, 54273-done
Hi,
Fatima Toothpaste <fatimatoothpaste@disroot.org> skribis:
> * gnu/packages/nicotine.scm (nicotine+): Update to 3.2.1.
> [source]: Delete network requried tests in snippet.
> [arguments]: Remove trailing #t.
> Replae 'check phase to run proper test.
> [inputs]: Add bash-minimal, gspell, libappindicator.
> [native-inputs]: Remove python-pytest. Add xvfb-run.
> [home-page]: Update URL.
[...]
> + (snippet '(begin
> + (delete-file-recursively "test/integration")))))
I added a comment above the snippet explaining it and applied.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-03-15 14:12 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-06 5:45 [bug#54273] [PATCH] gnu: nicotine+: update to 3.2.1 Fatima Toothpaste via Guix-patches via
2022-03-11 22:11 ` Ludovic Courtès
2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
2022-03-12 13:59 ` [bug#54273] [PATCH V2] gnu : nicotine+: Update " Fatima Toothpaste via Guix-patches via
2022-03-13 1:14 ` Fatima Toothpaste via Guix-patches via
2022-03-13 11:06 ` Maxime Devos
2022-03-13 15:45 ` Fatima Toothpaste via Guix-patches via
2022-03-13 15:41 ` [bug#54273] [PATCH V3] " Fatima Toothpaste via Guix-patches via
2022-03-15 9:52 ` bug#54273: [PATCH] gnu: nicotine+: update " Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.