* [bug#74161] [PATCH 0/2] gnu: Add knights.
@ 2024-11-01 15:11 Sughosha via Guix-patches via
2024-11-01 15:14 ` [bug#74161] [PATCH 1/2] " Sughosha via Guix-patches via
0 siblings, 1 reply; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-01 15:11 UTC (permalink / raw)
To: 74161; +Cc: Sughosha
This patch series adds knights and adds it to kde-games.
Sughosha (2):
gnu: Add knights.
gnu: kde-games: Add knights to propagated-inputs.
gnu/packages/kde-games.scm | 63 +++++++++++++++++++++++++++++++++++++-
1 file changed, 62 insertions(+), 1 deletion(-)
base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
--
2.46.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH 1/2] gnu: Add knights.
2024-11-01 15:11 [bug#74161] [PATCH 0/2] gnu: Add knights Sughosha via Guix-patches via
@ 2024-11-01 15:14 ` Sughosha via Guix-patches via
2024-11-01 15:15 ` [bug#74161] [PATCH 2/2] gnu: kde-games: Add knights to propagated-inputs Sughosha via Guix-patches via
2024-11-01 16:53 ` [bug#74161] [PATCH 1/2] gnu: Add knights Z572
0 siblings, 2 replies; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-01 15:14 UTC (permalink / raw)
To: 74161; +Cc: Sughosha
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2824 bytes --]
* gnu/packages/kde-games.scm (knights): New variable.
Change-Id: I86346750c28fefd5b2a02cbda8dcc458907766fa
---
gnu/packages/kde-games.scm | 60 ++++++++++++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm
index 10c26e1d8e..75c6038189 100644
--- a/gnu/packages/kde-games.scm
+++ b/gnu/packages/kde-games.scm
@@ -1594,6 +1594,66 @@ (define-public kjumpingcube
This package is part of the KDE games module.")
(license (list license:gpl2+ license:fdl1.2+))))
+(define-public knights
+ (package
+ (name "knights")
+ (version "24.05.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/knights-" version ".tar.xz"))
+ (sha256
+ (base32 "19xsa79p0ad3cgm1zz2ykbm4487fyizshn7ir8f5azhkr1bi6l8k"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase))
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list kconfigwidgets
+ kcoreaddons
+ kcrash
+ kdbusaddons
+ ki18n
+ kio
+ kplotting
+ ksvg
+ ktextwidgets
+ kwallet
+ kxmlgui
+ libkdegames
+ libplasma
+ qtspeech
+ qtsvg))
+ (home-page "https://apps.kde.org/knights/")
+ (synopsis "Chess game")
+ (description "KNights is a chess game, featuring:
+
+@itemize
+@item local play between two players on the same computer
+@item play against any computer program that supports the XBoard protocol
+@item play on the Free Internet Chess Server (FICS)
+@item watching two computer engines play against each other
+@item support for legal move checking
+@item markers for possible moves, opponent’s last move and sources of check
+@item board borders and site notations
+@item complete time control, with Plasma-styled clocks
+@item several themes, with the possibility of downloading new ones from within
+ the program
+@item animated moves (configurable)
+@item views for playing on a chess server, including a seek graph, text
+ console, and chat widget
+@item option to undo and redo moves
+@item graphic interface for making and receiving offers from remote players
+@item support for the UCI protocol (used by Stockfish, Chessbase, and many
+ others)
+@item support for saving and loading Portable game notation (PGN) files
+@item use of Jovie, the KDE text-to-speak program, to speak opponent’s moves
+@item ability to control the program via a D-Bus interface
+@end itemize")
+ (license license:gpl2+)))
+
(define-public kde-games
(package
(name "kde-games")
base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
--
2.46.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH 2/2] gnu: kde-games: Add knights to propagated-inputs.
2024-11-01 15:14 ` [bug#74161] [PATCH 1/2] " Sughosha via Guix-patches via
@ 2024-11-01 15:15 ` Sughosha via Guix-patches via
2024-11-01 16:53 ` [bug#74161] [PATCH 1/2] gnu: Add knights Z572
1 sibling, 0 replies; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-01 15:15 UTC (permalink / raw)
To: 74161; +Cc: Sughosha
* gnu/packages/kde-games (kde-games)[propagated-inputs]: Add knights.
Change-Id: I36666852175ba76d69f800e195dc6679ec3d621b
---
gnu/packages/kde-games.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm
index 75c6038189..e9e25c9e88 100644
--- a/gnu/packages/kde-games.scm
+++ b/gnu/packages/kde-games.scm
@@ -1663,7 +1663,7 @@ (define-public kde-games
(arguments
(list #:builder #~(mkdir #$output)))
(propagated-inputs
- ;; TODO: kpat, klickety, katomic, knights.
+ ;; TODO: kpat, klickety, katomic.
(list bomber
bovo
granatier
@@ -1685,6 +1685,7 @@ (define-public kde-games
kmines
knavalbattle
knetwalk
+ knights
kolf
kollision
konquest
--
2.46.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH 1/2] gnu: Add knights.
2024-11-01 15:14 ` [bug#74161] [PATCH 1/2] " Sughosha via Guix-patches via
2024-11-01 15:15 ` [bug#74161] [PATCH 2/2] gnu: kde-games: Add knights to propagated-inputs Sughosha via Guix-patches via
@ 2024-11-01 16:53 ` Z572
2024-11-03 7:08 ` Sughosha via Guix-patches via
1 sibling, 1 reply; 11+ messages in thread
From: Z572 @ 2024-11-01 16:53 UTC (permalink / raw)
To: 74161; +Cc: sughosha
[-- Attachment #1: Type: text/plain, Size: 3198 bytes --]
Sughosha via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/kde-games.scm (knights): New variable.
>
> Change-Id: I86346750c28fefd5b2a02cbda8dcc458907766fa
> ---
> gnu/packages/kde-games.scm | 60 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 60 insertions(+)
>
> diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm
> index 10c26e1d8e..75c6038189 100644
> --- a/gnu/packages/kde-games.scm
> +++ b/gnu/packages/kde-games.scm
> @@ -1594,6 +1594,66 @@ (define-public kjumpingcube
> This package is part of the KDE games module.")
> (license (list license:gpl2+ license:fdl1.2+))))
>
> +(define-public knights
> + (package
> + (name "knights")
We already have a package called knights, so maybe we need a new name here
> + (version "24.05.2")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "mirror://kde/stable/release-service/" version
> + "/src/knights-" version ".tar.xz"))
> + (sha256
> + (base32 "19xsa79p0ad3cgm1zz2ykbm4487fyizshn7ir8f5azhkr1bi6l8k"))))
> + (build-system qt-build-system)
> + (arguments
> + (list #:qtbase qtbase))
> + (native-inputs
> + (list extra-cmake-modules kdoctools))
> + (inputs
> + (list kconfigwidgets
> + kcoreaddons
> + kcrash
> + kdbusaddons
> + ki18n
> + kio
> + kplotting
> + ksvg
> + ktextwidgets
> + kwallet
> + kxmlgui
> + libkdegames
> + libplasma
> + qtspeech
> + qtsvg))
> + (home-page "https://apps.kde.org/knights/")
> + (synopsis "Chess game")
> + (description "KNights is a chess game, featuring:
> +
> +@itemize
> +@item local play between two players on the same computer
> +@item play against any computer program that supports the XBoard protocol
> +@item play on the Free Internet Chess Server (FICS)
> +@item watching two computer engines play against each other
> +@item support for legal move checking
> +@item markers for possible moves, opponent%e2%99s last move and sources of check
> +@item board borders and site notations
> +@item complete time control, with Plasma-styled clocks
> +@item several themes, with the possibility of downloading new ones from within
> + the program
> +@item animated moves (configurable)
> +@item views for playing on a chess server, including a seek graph, text
> + console, and chat widget
> +@item option to undo and redo moves
> +@item graphic interface for making and receiving offers from remote players
> +@item support for the UCI protocol (used by Stockfish, Chessbase, and many
> + others)
> +@item support for saving and loading Portable game notation (PGN) files
> +@item use of Jovie, the KDE text-to-speak program, to speak opponent%e2%99s moves
> +@item ability to control the program via a D-Bus interface
> +@end itemize")
> + (license license:gpl2+)))
> +
> (define-public kde-games
> (package
> (name "kde-games")
>
> base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH 1/2] gnu: Add knights.
2024-11-01 16:53 ` [bug#74161] [PATCH 1/2] gnu: Add knights Z572
@ 2024-11-03 7:08 ` Sughosha via Guix-patches via
2024-11-03 13:20 ` Z572
0 siblings, 1 reply; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-03 7:08 UTC (permalink / raw)
To: zhengjunjie, 74161
[-- Attachment #1: Type: text/plain, Size: 3503 bytes --]
I think renaming the existing "knights" package (old one) with "knightsgame" would be fine. It's home page also says this name.
On 1 November 2024 10:23:08 pm IST, Z572 <zhengjunjie@iscas.ac.cn> wrote:
>Sughosha via Guix-patches via <guix-patches@gnu.org> writes:
>
>> * gnu/packages/kde-games.scm (knights): New variable.
>>
>> Change-Id: I86346750c28fefd5b2a02cbda8dcc458907766fa
>> ---
>> gnu/packages/kde-games.scm | 60 ++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 60 insertions(+)
>>
>> diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm
>> index 10c26e1d8e..75c6038189 100644
>> --- a/gnu/packages/kde-games.scm
>> +++ b/gnu/packages/kde-games.scm
>> @@ -1594,6 +1594,66 @@ (define-public kjumpingcube
>> This package is part of the KDE games module.")
>> (license (list license:gpl2+ license:fdl1.2+))))
>>
>> +(define-public knights
>> + (package
>> + (name "knights")
>
>We already have a package called knights, so maybe we need a new name here
>
>> + (version "24.05.2")
>> + (source
>> + (origin
>> + (method url-fetch)
>> + (uri (string-append "mirror://kde/stable/release-service/" version
>> + "/src/knights-" version ".tar.xz"))
>> + (sha256
>> + (base32 "19xsa79p0ad3cgm1zz2ykbm4487fyizshn7ir8f5azhkr1bi6l8k"))))
>> + (build-system qt-build-system)
>> + (arguments
>> + (list #:qtbase qtbase))
>> + (native-inputs
>> + (list extra-cmake-modules kdoctools))
>> + (inputs
>> + (list kconfigwidgets
>> + kcoreaddons
>> + kcrash
>> + kdbusaddons
>> + ki18n
>> + kio
>> + kplotting
>> + ksvg
>> + ktextwidgets
>> + kwallet
>> + kxmlgui
>> + libkdegames
>> + libplasma
>> + qtspeech
>> + qtsvg))
>> + (home-page "https://apps.kde.org/knights/")
>> + (synopsis "Chess game")
>> + (description "KNights is a chess game, featuring:
>> +
>> +@itemize
>> +@item local play between two players on the same computer
>> +@item play against any computer program that supports the XBoard protocol
>> +@item play on the Free Internet Chess Server (FICS)
>> +@item watching two computer engines play against each other
>> +@item support for legal move checking
>> +@item markers for possible moves, opponent%e2�%99s last move and sources of check
>> +@item board borders and site notations
>> +@item complete time control, with Plasma-styled clocks
>> +@item several themes, with the possibility of downloading new ones from within
>> + the program
>> +@item animated moves (configurable)
>> +@item views for playing on a chess server, including a seek graph, text
>> + console, and chat widget
>> +@item option to undo and redo moves
>> +@item graphic interface for making and receiving offers from remote players
>> +@item support for the UCI protocol (used by Stockfish, Chessbase, and many
>> + others)
>> +@item support for saving and loading Portable game notation (PGN) files
>> +@item use of Jovie, the KDE text-to-speak program, to speak opponent%e2�%99s moves
>> +@item ability to control the program via a D-Bus interface
>> +@end itemize")
>> + (license license:gpl2+)))
>> +
>> (define-public kde-games
>> (package
>> (name "kde-games")
>>
>> base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
Sughosha
[-- Attachment #2: Type: text/html, Size: 4168 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH 1/2] gnu: Add knights.
2024-11-03 7:08 ` Sughosha via Guix-patches via
@ 2024-11-03 13:20 ` Z572
2024-11-04 2:56 ` [bug#74161] [PATCH v2 0/3] gnu: Rename knights with knightsgame and add knights Sughosha via Guix-patches via
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Z572 @ 2024-11-03 13:20 UTC (permalink / raw)
To: 74161; +Cc: sughosha
[-- Attachment #1: Type: text/plain, Size: 236 bytes --]
Sughosha via Guix-patches via <guix-patches@gnu.org> writes:
> I think renaming the existing "knights" package (old one) with "knightsgame" would be fine. It's home page also says this name.
>
Can you send out v2 to make this change?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH v2 0/3] gnu: Rename knights with knightsgame and add knights.
2024-11-03 13:20 ` Z572
@ 2024-11-04 2:56 ` Sughosha via Guix-patches via
2024-11-06 14:17 ` bug#74161: " Zheng Junjie
2024-11-04 2:56 ` [bug#74161] [PATCH v2 1/3] gnu: Rename knights with knightsgame Sughosha via Guix-patches via
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-04 2:56 UTC (permalink / raw)
To: Z572; +Cc: Sughosha, 74161
This patch series rename the existing knights package with knightsgame and adds
knights.
Sughosha (3):
gnu: Rename knights with knightsgame.
gnu: Add knights.
gnu: kde-games: Add knights to propagated-inputs.
gnu/packages/games.scm | 4 +--
gnu/packages/kde-games.scm | 63 +++++++++++++++++++++++++++++++++++++-
2 files changed, 64 insertions(+), 3 deletions(-)
base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
--
2.46.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH v2 1/3] gnu: Rename knights with knightsgame.
2024-11-03 13:20 ` Z572
2024-11-04 2:56 ` [bug#74161] [PATCH v2 0/3] gnu: Rename knights with knightsgame and add knights Sughosha via Guix-patches via
@ 2024-11-04 2:56 ` Sughosha via Guix-patches via
2024-11-04 2:56 ` [bug#74161] [PATCH v2 2/3] gnu: Add knights Sughosha via Guix-patches via
2024-11-04 2:56 ` [bug#74161] [PATCH v2 3/3] gnu: kde-games: Add knights to propagated-inputs Sughosha via Guix-patches via
3 siblings, 0 replies; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-04 2:56 UTC (permalink / raw)
To: Z572
Cc: Sughosha, 74161, Adam Faiz, Liliana Marie Prikler,
宋文武
Rename knights with knightsgame to package knights from KDE games module.
* gnu/packages/games.scm (knights): Rename with knightsgame.
Change-Id: I6eec8189fd29fe2ede67d98c26fdd9cafe4c2aef
---
gnu/packages/games.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index bb97332b6d..c503be2378 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -1977,9 +1977,9 @@ (define-public opensurge
license:public-domain
license:silofl1.1))))
-(define-public knights
+(define-public knightsgame
(package
- (name "knights")
+ (name "knightsgame")
(version "025")
(source (origin
(method url-fetch)
--
2.46.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH v2 2/3] gnu: Add knights.
2024-11-03 13:20 ` Z572
2024-11-04 2:56 ` [bug#74161] [PATCH v2 0/3] gnu: Rename knights with knightsgame and add knights Sughosha via Guix-patches via
2024-11-04 2:56 ` [bug#74161] [PATCH v2 1/3] gnu: Rename knights with knightsgame Sughosha via Guix-patches via
@ 2024-11-04 2:56 ` Sughosha via Guix-patches via
2024-11-04 2:56 ` [bug#74161] [PATCH v2 3/3] gnu: kde-games: Add knights to propagated-inputs Sughosha via Guix-patches via
3 siblings, 0 replies; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-04 2:56 UTC (permalink / raw)
To: Z572; +Cc: Sughosha, 74161
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2769 bytes --]
* gnu/packages/kde-games.scm (knights): New variable.
Change-Id: Iad32bd00c2c42caba078e49b8e0b205be4a3fcc1
---
gnu/packages/kde-games.scm | 60 ++++++++++++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm
index 10c26e1d8e..75c6038189 100644
--- a/gnu/packages/kde-games.scm
+++ b/gnu/packages/kde-games.scm
@@ -1594,6 +1594,66 @@ (define-public kjumpingcube
This package is part of the KDE games module.")
(license (list license:gpl2+ license:fdl1.2+))))
+(define-public knights
+ (package
+ (name "knights")
+ (version "24.05.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/release-service/" version
+ "/src/knights-" version ".tar.xz"))
+ (sha256
+ (base32 "19xsa79p0ad3cgm1zz2ykbm4487fyizshn7ir8f5azhkr1bi6l8k"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase))
+ (native-inputs
+ (list extra-cmake-modules kdoctools))
+ (inputs
+ (list kconfigwidgets
+ kcoreaddons
+ kcrash
+ kdbusaddons
+ ki18n
+ kio
+ kplotting
+ ksvg
+ ktextwidgets
+ kwallet
+ kxmlgui
+ libkdegames
+ libplasma
+ qtspeech
+ qtsvg))
+ (home-page "https://apps.kde.org/knights/")
+ (synopsis "Chess game")
+ (description "KNights is a chess game, featuring:
+
+@itemize
+@item local play between two players on the same computer
+@item play against any computer program that supports the XBoard protocol
+@item play on the Free Internet Chess Server (FICS)
+@item watching two computer engines play against each other
+@item support for legal move checking
+@item markers for possible moves, opponent’s last move and sources of check
+@item board borders and site notations
+@item complete time control, with Plasma-styled clocks
+@item several themes, with the possibility of downloading new ones from within
+ the program
+@item animated moves (configurable)
+@item views for playing on a chess server, including a seek graph, text
+ console, and chat widget
+@item option to undo and redo moves
+@item graphic interface for making and receiving offers from remote players
+@item support for the UCI protocol (used by Stockfish, Chessbase, and many
+ others)
+@item support for saving and loading Portable game notation (PGN) files
+@item use of Jovie, the KDE text-to-speak program, to speak opponent’s moves
+@item ability to control the program via a D-Bus interface
+@end itemize")
+ (license license:gpl2+)))
+
(define-public kde-games
(package
(name "kde-games")
--
2.46.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [bug#74161] [PATCH v2 3/3] gnu: kde-games: Add knights to propagated-inputs.
2024-11-03 13:20 ` Z572
` (2 preceding siblings ...)
2024-11-04 2:56 ` [bug#74161] [PATCH v2 2/3] gnu: Add knights Sughosha via Guix-patches via
@ 2024-11-04 2:56 ` Sughosha via Guix-patches via
3 siblings, 0 replies; 11+ messages in thread
From: Sughosha via Guix-patches via @ 2024-11-04 2:56 UTC (permalink / raw)
To: Z572; +Cc: Sughosha, 74161
* gnu/packages/kde-games.scm (kde-games)[propagated-inputs]: Add knights.
Change-Id: Id91a05d481774b94296d869bebf9bd7d8db1dccb
---
gnu/packages/kde-games.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm
index 75c6038189..e9e25c9e88 100644
--- a/gnu/packages/kde-games.scm
+++ b/gnu/packages/kde-games.scm
@@ -1663,7 +1663,7 @@ (define-public kde-games
(arguments
(list #:builder #~(mkdir #$output)))
(propagated-inputs
- ;; TODO: kpat, klickety, katomic, knights.
+ ;; TODO: kpat, klickety, katomic.
(list bomber
bovo
granatier
@@ -1685,6 +1685,7 @@ (define-public kde-games
kmines
knavalbattle
knetwalk
+ knights
kolf
kollision
konquest
--
2.46.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* bug#74161: [PATCH v2 0/3] gnu: Rename knights with knightsgame and add knights.
2024-11-04 2:56 ` [bug#74161] [PATCH v2 0/3] gnu: Rename knights with knightsgame and add knights Sughosha via Guix-patches via
@ 2024-11-06 14:17 ` Zheng Junjie
0 siblings, 0 replies; 11+ messages in thread
From: Zheng Junjie @ 2024-11-06 14:17 UTC (permalink / raw)
To: Sughosha via Guix-patches via; +Cc: 74161-done, Sughosha
[-- Attachment #1: Type: text/plain, Size: 533 bytes --]
Sughosha via Guix-patches via <guix-patches@gnu.org> writes:
> This patch series rename the existing knights package with knightsgame and adds
> knights.
>
> Sughosha (3):
> gnu: Rename knights with knightsgame.
> gnu: Add knights.
> gnu: kde-games: Add knights to propagated-inputs.
>
> gnu/packages/games.scm | 4 +--
> gnu/packages/kde-games.scm | 63 +++++++++++++++++++++++++++++++++++++-
> 2 files changed, 64 insertions(+), 3 deletions(-)
>
>
> base-commit: 6e50b0c56a8cc767bd3acb26638f78c450bde718
push, close.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-06 14:18 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-01 15:11 [bug#74161] [PATCH 0/2] gnu: Add knights Sughosha via Guix-patches via
2024-11-01 15:14 ` [bug#74161] [PATCH 1/2] " Sughosha via Guix-patches via
2024-11-01 15:15 ` [bug#74161] [PATCH 2/2] gnu: kde-games: Add knights to propagated-inputs Sughosha via Guix-patches via
2024-11-01 16:53 ` [bug#74161] [PATCH 1/2] gnu: Add knights Z572
2024-11-03 7:08 ` Sughosha via Guix-patches via
2024-11-03 13:20 ` Z572
2024-11-04 2:56 ` [bug#74161] [PATCH v2 0/3] gnu: Rename knights with knightsgame and add knights Sughosha via Guix-patches via
2024-11-06 14:17 ` bug#74161: " Zheng Junjie
2024-11-04 2:56 ` [bug#74161] [PATCH v2 1/3] gnu: Rename knights with knightsgame Sughosha via Guix-patches via
2024-11-04 2:56 ` [bug#74161] [PATCH v2 2/3] gnu: Add knights Sughosha via Guix-patches via
2024-11-04 2:56 ` [bug#74161] [PATCH v2 3/3] gnu: kde-games: Add knights to propagated-inputs Sughosha via Guix-patches via
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.