* [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; 4+ 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] 4+ 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; 4+ 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] 4+ 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; 4+ 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] 4+ 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 1 sibling, 0 replies; 4+ 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] 4+ messages in thread
end of thread, other threads:[~2024-11-01 16:54 UTC | newest] Thread overview: 4+ 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
Code repositories for project(s) associated with this public inbox https://git.savannah.gnu.org/cgit/guix.git 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).