unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#38386] [PATCH 00/38] Add 36 KDE games.
@ 2019-11-26 13:19 Hartmut Goebel
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
       [not found] ` <handler.38386.B.157477438421753.ack@debbugs.gnu.org>
  0 siblings, 2 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:19 UTC (permalink / raw)
  To: 38386

This is a collection of KDE games, based on my approach to mass-package KDE, I
started in 2017.

The require the `qt-build-system`, which is not yet finished, thus these can
be pushed only after the `qt-build-system`. Nevertheless I tested the packages
with a `qt-build-system` proof-of-concept.

Packages are very similar to each other, thus synopsis and descriptions are
the interesting parts to be reviewed.

Question: All packages currently have
- (properties `((tags . ("Desktop" "KDE" "Games"))))
- In the description: "This package is part of the KDE games module."

Shall these be kept?

Hartmut Goebel (38):
  gnu: Add libkdegames.
  gnu: Add ktuberling.
  gnu: Add picmi.
  gnu: Add kolf.
  gnu: Add libkmahjongg.
  gnu: Add kmahjongg.
  gnu: Add kshisen.
  gnu: Add kajongg.
  gnu: Add kbreakout.
  gnu: Add kmines.
  gnu: Add konquest.
  gnu: Add kbounce.
  gnu: Add kblocks.
  gnu: Add ksudoku.
  gnu: Add klines.
  gnu: Add kgoldrunner.
  gnu: Add kdiamond.
  gnu: Add kfourinline.
  gnu: Add kblackbox.
  gnu: Add knetwalk.
  gnu: Add bomber.
  gnu: Add granatier.
  gnu: Add ksirk.
  gnu: Add palapeli.
  gnu: Add kiriki.
  gnu: Add kigo.
  gnu: Add kubrick.
  gnu: Add lskat.
  gnu: Add kapman.
  gnu: Add kspaceduel.
  gnu: Add bovo.
  gnu: Add killbots.
  gnu: Add ksnakeduel.
  gnu: Add kollision.
  gnu: Add knavalbattle.
  gnu: Add kreversi.
  gnu: Add ksquares.
  gnu: Add kjumpingcube.

 gnu/packages/games.scm | 1574 ++++++++++++++++++++++++++++++++++++++++
 gnu/packages/kde.scm   |   57 ++
 2 files changed, 1631 insertions(+)

-- 
2.21.0

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

* [bug#38386] [PATCH 01/38] gnu: Add libkdegames.
  2019-11-26 13:19 [bug#38386] [PATCH 00/38] Add 36 KDE games Hartmut Goebel
@ 2019-11-26 13:20 ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 02/38] gnu: Add ktuberling Hartmut Goebel
                     ` (36 more replies)
       [not found] ` <handler.38386.B.157477438421753.ack@debbugs.gnu.org>
  1 sibling, 37 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/kde.scm (libkdegames): New variable.
---
 gnu/packages/kde.scm | 57 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index ab5118583e..72930c91ea 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -6,6 +6,7 @@
 ;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
 ;;; Copyright © 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -31,6 +32,7 @@
   #:use-module (guix utils)
   #:use-module (gnu packages algebra)
   #:use-module (gnu packages apr)
+  #:use-module (gnu packages audio)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages curl)
@@ -49,6 +51,7 @@
   #:use-module (gnu packages perl)
   #:use-module (gnu packages photo)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages pulseaudio)
   #:use-module (gnu packages python)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages qt)
@@ -670,3 +673,57 @@ system-wide profiler for Linux using statistical sampling with hardware
 performance counters.  There also exist converters for profiling output of
 Python, PHP, and Perl.")
     (license license:gpl2)))
+
+(define-public libkdegames
+  (package
+    (name "libkdegames")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/libkdegames-" version ".tar.xz"))
+      (sha256
+       (base32 "12dvkmjgbi8dp9y55zmx1pw3zr2i374c4vn3mfn9r31bf06dr701"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("karchive" ,karchive)
+       ("kbookmarks" ,kbookmarks)
+       ("kcodecs" ,kcodecs)
+       ("kcompletion" ,kcompletion)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kdeclarative" ,kdeclarative)
+       ("kdnssd" ,kdnssd)
+       ("kglobalaccel" ,kglobalaccel)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ;("kio" ,kio)
+       ("kitemviews" ,kitemviews)
+       ("kjobwidgets" ,kjobwidgets)
+       ("knewstuff" ,knewstuff)
+       ("kservice" ,kservice)
+       ("ktextwidgets" ,ktextwidgets)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libsndfile" ,libsndfile)
+       ("openal" ,openal)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'check-setup
+           (lambda _
+             ;; make Qt render "offscreen", required for tests
+             (setenv "QT_QPA_PLATFORM" "offscreen")
+             #t)))))
+    (home-page "https://games.kde.org/")
+    (synopsis "Runtime library for kdegames")
+    (description "Runtime library for kdegames")
+    (license (list license:gpl2+  license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 02/38] gnu: Add ktuberling.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 03/38] gnu: Add picmi Hartmut Goebel
                     ` (35 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (ktuberling): New variable.
---
 gnu/packages/games.scm | 54 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 613b3acfeb..31aeca7f81 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -45,6 +45,7 @@
 ;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2019 Timotej Lazar <timotej.lazar@araneo.si>
 ;;; Copyright © 2019 Josh Holland <josh@inv.alid.pw>
+;;; Copyright © 2017, 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -118,6 +119,8 @@
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
+  #:use-module (gnu packages kde)
+  #:use-module (gnu packages kde-frameworks)
   #:use-module (gnu packages less)
   #:use-module (gnu packages libcanberra)
   #:use-module (gnu packages libedit)
@@ -174,6 +177,7 @@
   #:use-module (guix build-system scons)
   #:use-module (guix build-system python)
   #:use-module (guix build-system cmake)
+  #:use-module (guix build-system qt)
   #:use-module (guix build-system trivial)
   #:use-module ((srfi srfi-1) #:hide (zip))
   #:use-module (srfi srfi-26))
@@ -7802,3 +7806,53 @@ remake of that series or any other game.")
 the AlphaGo Zero paper.  The current best network weights file for the engine
 can be downloaded from @url{https://zero.sjeng.org/best-network}.")
    (license license:gpl3+)))
+
+(define-public ktuberling
+  (package
+    (name "ktuberling")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/ktuberling-" version ".tar.xz"))
+      (sha256
+       (base32 "1qdf4q6wjh1lnlqw5c8z4rpj9w5vbyjfri1dah6yjm3mwppbc12j"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("perl" ,perl)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kdelibs4support" ,kdelibs4support)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtmultimedia" ,qtmultimedia)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Stamp drawing toy")
+    (description "KTuberling is a drawing toy intended for small children and
+adults who remain young at heart.  The game has no winner; the only purpose is
+to make the funniest faces you can.  Several activites are possible, e.g.:
+
+@itemize
+@item Give the potato a funny face, clothes, and other goodies
+@item Build a small town, complete with school, zoo, and fire department
+@item Create a fantastic moonscape with spaceships and aliens
+@item Top a pizza
+@end itemize
+
+KTuberling can speak the name of each the object in several languages,
+to assist in learning basic vocabulary.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 03/38] gnu: Add picmi.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 02/38] gnu: Add ktuberling Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 04/38] gnu: Add kolf Hartmut Goebel
                     ` (34 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (picmi): New variable.
---
 gnu/packages/games.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 31aeca7f81..3c9b44398f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -7856,3 +7856,41 @@ to assist in learning basic vocabulary.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public picmi
+  (package
+    (name "picmi")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/picmi-" version ".tar.xz"))
+      (sha256
+       (base32 "0z9mpmv49w914gqdx274brdzl6d1bz9j9nkvbwgmr3iq1ba49m3f"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kdeclarative" ,kdeclarative)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("knewstuff" ,knewstuff)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Number logic game")
+    (description "Picmi is a number logic game in which cells in a grid have
+to be colored or left blank according to numbers given at the side of the
+grid.  The aim is to reveal a hidden picture.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 04/38] gnu: Add kolf.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 02/38] gnu: Add ktuberling Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 03/38] gnu: Add picmi Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 05/38] gnu: Add libkmahjongg Hartmut Goebel
                     ` (33 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kolf): New variable.

Co-Authored-By: Hartmut Goebel <h.goebel@crazy-compilers.com>
---
 gnu/packages/games.scm | 49 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 3c9b44398f..e8af7f29bb 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -7894,3 +7894,52 @@ grid.  The aim is to reveal a hidden picture.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kolf
+  (package
+    (name "kolf")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/kolf-" version ".tar.xz"))
+       (sha256
+        (base32 "06sfd0llr5cc3zf1vrpcxgw9bm009ky7y8822kynic9ipcd4z1hw"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("ktextwidgets" ,ktextwidgets)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Miniature golf game")
+    (description "Kolf is a miniature golf game for one to ten players.  The
+game is played from an overhead view, with a short bar representing the golf
+club.  Kolf features many different types of objects, such as water hazards,
+slopes, sand traps, and black holes (warps), among others.
+
+Features are:
+@itemize
+@item Single and Multi-player (up to ten players) modes
+@item High scores table
+@item Dynamic courses
+@item Third-party courses
+@item Course editor
+@end itemize
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 05/38] gnu: Add libkmahjongg.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (2 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 04/38] gnu: Add kolf Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 06/38] gnu: Add kmahjongg Hartmut Goebel
                     ` (32 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/kde-misc.scm (libkmahjongg): New variable.
---
 gnu/packages/games.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index e8af7f29bb..4545897e35 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -7943,3 +7943,34 @@ Features are:
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public libkmahjongg
+  (package
+    (name "libkmahjongg")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/libkmahjongg-" version ".tar.xz"))
+      (sha256
+       (base32 "0rdimk11hrc8qrmiv26z0ddjzi1k6806c0rfskx4cwmildmh6zgx"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("kauth" ,kauth)
+       ("kcompletion" ,kcompletion)
+       ;("kconfig" ,kconfig)
+       ("kcodecs" ,kcodecs)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Shared library for kmahjongg and kshisen")
+    (description "Shared library and common files for kmahjongg, kshisen and
+other Mah Jongg like games.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 06/38] gnu: Add kmahjongg.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (3 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 05/38] gnu: Add libkmahjongg Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 07/38] gnu: Add kshisen Hartmut Goebel
                     ` (31 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kmahjongg): New variable.
---
 gnu/packages/games.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4545897e35..9629cb8ae8 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -7974,3 +7974,44 @@ This package is part of the KDE games module.")
     (description "Shared library and common files for kmahjongg, kshisen and
 other Mah Jongg like games.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public kmahjongg
+  (package
+    (name "kmahjongg")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/kmahjongg-" version ".tar.xz"))
+      (sha256
+       (base32 "08na845h0nhmfrszdmvfq5y1dy7kgbrlzjp0f5snvbbf7w44ci6p"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kdeclarative" ,kdeclarative)
+       ("ki18n" ,ki18n)
+       ("knewstuff" ,knewstuff)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("libkmahjongg" ,libkmahjongg)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Tile laying patience")
+    (description "In KMahjongg the tiles are scrambled and staked on top of
+each other to resemble a certain shape.  The player is then expected to remove
+all the tiles off the game board by locating each tile's matching pair.
+
+A variety of tile layouts are included, as well as an editor to create new
+layouts.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 07/38] gnu: Add kshisen.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (4 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 06/38] gnu: Add kmahjongg Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 08/38] gnu: Add kajongg Hartmut Goebel
                     ` (30 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kshisen): New variable.
---
 gnu/packages/games.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 9629cb8ae8..d67bea8feb 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8015,3 +8015,43 @@ layouts.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public kshisen
+  (package
+    (name "kshisen")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/kshisen-" version ".tar.xz"))
+      (sha256
+       (base32 "1bq5m48af4h5apfp3bfsp76nlpv6h5sc0gd544zv7cgpfznz1sds"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ;("perl" ,perl)
+       ;("pkg-config" ,pkg-config)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kauth" ,kauth)
+       ("kcompletion" ,kcompletion)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("libkmahjongg" ,libkmahjongg)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Shisen-Sho solitaire game")
+    (description "KShisen is a solitaire-like game played using the standard
+set of Mahjong tiles.  Unlike Mahjong however, KShisen has only one layer of
+scrambled tiles
+
+This package is part of the KDE games module.")
+    (license license:gpl2+)))
-- 
2.21.0

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

* [bug#38386] [PATCH 08/38] gnu: Add kajongg.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (5 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 07/38] gnu: Add kshisen Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 09/38] gnu: Add kbreakout Hartmut Goebel
                     ` (29 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kajongg): New variable.
---
 gnu/packages/games.scm | 45 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index d67bea8feb..2221c5d1ac 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8055,3 +8055,48 @@ scrambled tiles
 
 This package is part of the KDE games module.")
     (license license:gpl2+)))
+
+(define-public kajongg
+  (package
+    (name "kajongg")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/kajongg-" version ".tar.xz"))
+      (sha256
+       (base32 "0ql6p5zifdpdf65r7ki9ml123azpwwk9x3x8r9ij6xhjnf7p7x6w"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ;("perl" ,perl)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("ki18n" ,ki18n)
+       ("libkmahjongg" ,libkmahjongg)
+       ("python" ,python)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)))
+    (propagated-inputs
+     `(("python-twisted" ,python-twisted)
+       ("python-pyqt" ,python-pyqt)))
+    ;; FIXME: Need to wrap PYTHONPATH
+    (home-page "https://games.kde.org/")
+    (synopsis "Classical Mah Jongg game for 4 players")
+    (description "Kajongg is the ancient Chinese board game for 4 players.
+
+If you are looking for the Mah Jongg solitaire please use the application
+kmahjongg.
+
+Kajongg can be used in two different ways: Scoring a manual game where you
+play as always and use Kajongg for the computation of scores and for
+bookkeeping.  Or you can use Kajongg to play against any combination of other
+human players or computer players.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 09/38] gnu: Add kbreakout.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (6 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 08/38] gnu: Add kajongg Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 10/38] gnu: Add kmines Hartmut Goebel
                     ` (28 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kbreakout): New variable.
---
 gnu/packages/games.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 2221c5d1ac..050857b5a3 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8100,3 +8100,42 @@ human players or computer players.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kbreakout
+  (package
+    (name "kbreakout")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kbreakout-" version ".tar.xz"))
+      (sha256
+       (base32 "0gwzx1z9mxrjlcjzglg8cxkyd6900whcar3b5j9laxxarc6xhj8w"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Breakout like game")
+    (description "KBreakout is similar to the classics breakout and xboing,
+featuring a number of added graphical enhancements and effects.  You control a
+paddle at the bottom of the playing-field, and must destroy bricks at the top
+by bouncing balls against them.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 10/38] gnu: Add kmines.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (7 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 09/38] gnu: Add kbreakout Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 11/38] gnu: Add konquest Hartmut Goebel
                     ` (27 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kmines): New variable.
---
 gnu/packages/games.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 050857b5a3..7da5d98877 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8139,3 +8139,42 @@ by bouncing balls against them.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kmines
+  (package
+    (name "kmines")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kmines-" version ".tar.xz"))
+      (sha256
+       (base32 "0ac3za36lh8hpx6mqfic9amwmzhzhzplm9hg3pw12gxl5a9mvfsf"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("ktextwidgets" ,ktextwidgets)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Classical mine sweeper game")
+    (description "KMines is a classic Minesweeper game.  The idea is to
+uncover all the squares without blowing up any mines.  When a mine is blown
+up, the game is over.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 11/38] gnu: Add konquest.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (8 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 10/38] gnu: Add kmines Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 12/38] gnu: Add kbounce Hartmut Goebel
                     ` (26 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (konquest): New variable.
---
 gnu/packages/games.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 7da5d98877..db652c0478 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8178,3 +8178,44 @@ up, the game is over.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public konquest
+  (package
+    (name "konquest")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/konquest-" version ".tar.xz"))
+      (sha256
+       (base32 "02gjxskhi10a1sqh3skcild8zria7wncz1a4sbz7ax1p851q76k1"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Simple turn-based strategy game")
+    (description "Konquest is the KDE version of Gnu-Lactic Konquest.  Players
+conquer other planets by sending ships to them.  The goal is to build an
+interstellar empire and ultimately conquer all other player's planets.  The
+game can be played with up to nine empires, commanded either by the computer
+or by puny earthlings.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 12/38] gnu: Add kbounce.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (9 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 11/38] gnu: Add konquest Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 13/38] gnu: Add kblocks Hartmut Goebel
                     ` (25 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kbounce): New variable.
---
 gnu/packages/games.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index db652c0478..8486ea017c 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8219,3 +8219,43 @@ or by puny earthlings.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kbounce
+  (package
+    (name "kbounce")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/kbounce-" version ".tar.xz"))
+      (sha256
+       (base32 "02rfv0qzz5cmyfx8f56a45hbm9gsp6m3dcy8ajwx88rw5wpbrr11"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Jezzball arcade game")
+    (description "KBounce is a single player arcade game with the elements of
+puzzle.  It is played on a field, surrounded by wall, with two or more balls
+bouncing around within the walls.  The object of the game is to build new
+walls to decrease the size of the active field.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 13/38] gnu: Add kblocks.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (10 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 12/38] gnu: Add kbounce Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 14/38] gnu: Add ksudoku Hartmut Goebel
                     ` (24 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kblocks): New variable.
---
 gnu/packages/games.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 8486ea017c..4a95b962f9 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8259,3 +8259,45 @@ walls to decrease the size of the active field.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public kblocks
+  (package
+    (name "kblocks")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/kblocks-" version ".tar.xz"))
+      (sha256
+       (base32 "0qrm0dihzhkxsq9l49ndzms802x6jn92vvabb2zf2q9z593m69cx"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Single player falling blocks puzzle game")
+    (description "KBlocks is the classic Tetris-like falling blocks game.
+
+The idea is to stack the falling blocks to create horizontal lines without any
+gaps.  When a line is completed it is removed, and more space is available in
+the play area.  When there is not enough space for blocks to fall, the game is
+over.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 14/38] gnu: Add ksudoku.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (11 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 13/38] gnu: Add kblocks Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 15/38] gnu: Add klines Hartmut Goebel
                     ` (23 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (ksudoku): New variable.
---
 gnu/packages/games.scm | 62 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4a95b962f9..6ab59103a3 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8301,3 +8301,65 @@ over.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public ksudoku
+  (package
+    (name "ksudoku")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/"
+                          version "/src/ksudoku-" version ".tar.xz"))
+      (sha256
+       (base32 "0rcscz91hilm7l3am5w02n0n8l7xhi4l0n4sskznh68kblw0ggw2"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("karchive", karchive)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("glu" ,glu)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Sudoku puzzle game and solver")
+    (description "KSudoku is a Sudoku game and solver, supporting a range of
+2D and 3D Sudoku variants.  In addition to playing Sudoku, it can print Sudoku
+puzzle sheets and find the solution to any Sudoku puzzle.
+
+The word Sudoku means \"single number in an allotted place\" in Japanese.
+These are the basic rules: Every Sudoku is a square divided into 3x3
+subsquares with 3x3 cells each.
+
+Some cells are filled with a number at the beginning.  The remaining ones are
+to be filled by the player using numbers from 1 to 9, without repeating a
+number twice on each column, row or subsquare (each of them must contain only
+one 1, one 2, one 3, and so on).  The game requires logic and patience.
+Solving takes usually 10 to 30 minutes, depending on puzzle level, your skill
+and experience.
+
+The numerals in Sudoku puzzles are used for convenience (for example in 16x16
+board we use letters): arithmetic relationships between numbers are
+irrelevant.
+
+This program supports also 16x16 games with numbers from 1 to 16 and 256
+cells with 16 cols, rows and subsquares!
+
+More information at http://en.wikipedia.org/wiki/Sudoku
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 15/38] gnu: Add klines.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (12 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 14/38] gnu: Add ksudoku Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 16/38] gnu: Add kgoldrunner Hartmut Goebel
                     ` (22 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (klines): New variable.
---
 gnu/packages/games.scm | 45 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 6ab59103a3..7faf20ad5b 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8363,3 +8363,48 @@ More information at http://en.wikipedia.org/wiki/Sudoku
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public klines
+  (package
+    (name "klines")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/klines-" version ".tar.xz"))
+      (sha256
+       (base32 "1g1f46jp0rb8gpqkgcf915ydpsscn1sxk3gjvm8bcqgx9ddq59xa"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Place 5 equal pieces together, but wait, there are 3 new ones")
+    (description "KLines is a simple but highly addictive one player game.
+
+The player has to move the colored balls around the game board, gathering them
+into the lines of the same color by five.  Once the line is complete it is
+removed from the board, therefore freeing precious space.  In the same time
+the new balls keep arriving by three after each move, filling up the game
+board.
+
+KLines is a single-player game where the player removes colored balls from the
+board by arranging them into lines of five or more.  However, every time the
+player moves a ball, three more balls are added to the board.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 16/38] gnu: Add kgoldrunner.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (13 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 15/38] gnu: Add klines Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 17/38] gnu: Add kdiamond Hartmut Goebel
                     ` (21 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kgoldrunner): New variable.
---
 gnu/packages/games.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 7faf20ad5b..f48a783af7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8408,3 +8408,45 @@ player moves a ball, three more balls are added to the board.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kgoldrunner
+  (package
+    (name "kgoldrunner")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version "/src/kgoldrunner-"
+                           version ".tar.xz"))
+      (sha256
+       (base32 "16rcvq796r3asz4v4ap75xvwnxd3dd2nsq5r9vxvzl6rrf1w9bj4"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Action and puzzle solving game")
+    (description "KGoldrunner is an action game where the hero runs through a
+maze, climbs stairs, dig holes and dodges enemies in order to collect all the
+gold nuggets and escape to the next level.  Your enemies are also after the
+gold.  Worse still, they are after you!.
+
+KGoldrunner is a fast-paced platform game where the player must navigate a
+maze while collecting gold nuggets and avoiding enemies.  A variety of level
+packs are included, as well as an editor to create new levels.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 17/38] gnu: Add kdiamond.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (14 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 16/38] gnu: Add kgoldrunner Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 18/38] gnu: Add kfourinline Hartmut Goebel
                     ` (20 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kdiamond): New variable.
---
 gnu/packages/games.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index f48a783af7..405135bb87 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8450,3 +8450,43 @@ packs are included, as well as an editor to create new levels.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kdiamond
+  (package
+    (name "kdiamond")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kdiamond-" version ".tar.xz"))
+      (sha256
+       (base32 "1v5yb9hb26lk277zhw8d37ks829yfqr5anzx1qhms44gca5kqhva"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion", kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("knotifications" ,knotifications)
+       ("knotifyconfig" ,knotifyconfig)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Three-in-a-row game")
+    (description "KDiamond is a three-in-a-row game like Bejeweled.  It
+features unlimited fun with randomly generated games and five difficulty
+levels with varying number of diamond colors and board sizes.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 18/38] gnu: Add kfourinline.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (15 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 17/38] gnu: Add kdiamond Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 19/38] gnu: Add kblackbox Hartmut Goebel
                     ` (19 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kfourinline): New variable.
---
 gnu/packages/games.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 405135bb87..9c661253db 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8490,3 +8490,44 @@ levels with varying number of diamond colors and board sizes.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kfourinline
+  (package
+    (name "kfourinline")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kfourinline-" version ".tar.xz"))
+      (sha256
+       (base32 "1vprs6dc1ccn3g6k594i9s94xy4b91vzlqjysyc6fqcq2fs54ny3"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdelibs4support" ,kdelibs4support)
+       ("kdnssd" ,kdnssd)
+       ("ki18n" ,ki18n)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Place 4 pieces in a row")
+    (description "KFourInLine is a board game for two players based on the
+Connect-Four game.
+
+KFourInLine is a game where two players take turns dropping pieces into a
+grid, the winner being the first to place four pieces in a line.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 19/38] gnu: Add kblackbox.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (16 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 18/38] gnu: Add kfourinline Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 20/38] gnu: Add knetwalk Hartmut Goebel
                     ` (18 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kblackbox): New variable.
---
 gnu/packages/games.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 9c661253db..70426c5d88 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8531,3 +8531,45 @@ grid, the winner being the first to place four pieces in a line.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public kblackbox
+  (package
+    (name "kblackbox")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kblackbox-" version ".tar.xz"))
+      (sha256
+       (base32 "1x42sfpf75c6mavwkc7g7dm11y9s5dpj8igphly5kvm0pajqby0n"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("karchive" ,karchive)
+       ("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("ktextwidgets" ,ktextwidgets)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Find atoms in a grid by shooting electrons")
+    (description "KBlackbox is a game of hide and seek played on a grid of
+boxes where the computer has hidden several balls.  The position of the hidden
+balls can be deduced by shooting beams into the box
+
+KBlackBox is a game of hide and seek played on an grid of boxes, where the
+player shoots rays into the grid to deduce the positions of hidden objects.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 20/38] gnu: Add knetwalk.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (17 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 19/38] gnu: Add kblackbox Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 21/38] gnu: Add bomber Hartmut Goebel
                     ` (17 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (knetwalk): New variable.
---
 gnu/packages/games.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 70426c5d88..c0daaa69d8 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8573,3 +8573,46 @@ player shoots rays into the grid to deduce the positions of hidden objects.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public knetwalk
+  (package
+    (name "knetwalk")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/knetwalk-" version ".tar.xz"))
+      (sha256
+       (base32 "1i340salzgqdw8y33wrrydmpgx3pvwf5wrbljlh67cjf6s4csx7d"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("ktextwidgets" ,ktextwidgets)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Turn the board pieces to get all computers connected")
+    (description "KNetWalk is a small game where you have to build up a
+computer network by rotating the wires to connect the terminals to the server.
+When the network is build, a highscore-list comes up where competitions can be
+fought out.
+
+KNetwalk is a puzzle game where the player arranges sections of wire to
+connect all the computers on the board.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 21/38] gnu: Add bomber.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (18 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 20/38] gnu: Add knetwalk Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 22/38] gnu: Add granatier Hartmut Goebel
                     ` (16 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (bomber): New variable.
---
 gnu/packages/games.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index c0daaa69d8..10405982a0 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8616,3 +8616,46 @@ connect all the computers on the board.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public bomber
+  (package
+    (name "bomber")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/bomber-" version ".tar.xz"))
+       (sha256
+        (base32 "1lvzd0mzgq25akvwvkm57l3plm65k731v2i1ahakn985bb5gc3is"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletiom" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Arcade bombing game")
+    (description "Bomber is a single player arcade game.
+
+The player is invading various cities in a plane that is decreasing in height.
+The goal of the game is to destroy all the buildings and advance to the next
+level.  Each level gets a bit harder by increasing the speed of the plane and
+the height of the buildings.
+
+Bomber is a game where you fly a spaceship and attempt to bomb the buildings
+below you.  Each pass the spaceship makes, it gets lower and lower.  If you've
+not destroyed a building in your path, you will crash into it.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 22/38] gnu: Add granatier.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (19 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 21/38] gnu: Add bomber Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 23/38] gnu: Add ksirk Hartmut Goebel
                     ` (15 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (granatier): New variable.
---
 gnu/packages/games.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 10405982a0..4a2d0e6236 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8659,3 +8659,42 @@ not destroyed a building in your path, you will crash into it.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public granatier
+  (package
+    (name "granatier")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/granatier-" version ".tar.xz"))
+      (sha256
+       (base32 "141qmdinz7ikbbrs8dq6cap3nl22sl7pw62r80pf3xxwn2q4phpa"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("knewstuff" ,knewstuff)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Bomberman clone")
+    (description "Granatier is a clone of the classic Bomberman game,
+inspired by the work of the Clanbomber clone.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 23/38] gnu: Add ksirk.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (20 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 22/38] gnu: Add granatier Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 24/38] gnu: Add palapeli Hartmut Goebel
                     ` (14 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (ksirk): New variable.
---
 gnu/packages/games.scm | 57 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4a2d0e6236..8cc65aaf7e 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8698,3 +8698,60 @@ inspired by the work of the Clanbomber clone.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public ksirk
+  (package
+    (name "ksirk")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/ksirk-" version ".tar.xz"))
+       (sha256
+        (base32 "1b1wixs2hp5qnvdygfwa3kvy0kn94ysa4ifmx90q6r3yfr2lpfca"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcrash" ,kcrash)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kio" ,kio)
+       ("knewstuff" ,knewstuff)
+       ("kwallet" ,kwallet)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("phonon" ,phonon)
+       ("qca" ,qca)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)
+       ("zlib" ,zlib)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Computerized version of the well known strategy board game
+'Risk'")
+    (description "KsirK is a multi-player network-enabled game.  The goal of
+the game is simply to conquer the world by attacking your neighbors with your
+armies.
+
+At the beginning of the game, countries are distributed to all the players.
+Each country contains one army represented by an infantryman.  Each player has
+some armies to distribute to his countries.  On each turn, each player can
+attack his neighbours, eventually conquering one or more countries.  At the
+end of each turn, some bonus armies are distributed to the players in function
+of the number of countries they own.  The winner is the player that conquered
+all the world.
+
+Features:
+@itemize
+@item Support for 1-6 human or computer players
+@item Multi-player gaming over a network
+@item You can easily create new skins with SVG graphics and the skin editor
+@item Hot New Stuff support.  You can easily download and install new skins
+@end itemize
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 24/38] gnu: Add palapeli.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (21 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 23/38] gnu: Add ksirk Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 25/38] gnu: Add kiriki Hartmut Goebel
                     ` (13 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (palapeli): New variable.
---
 gnu/packages/games.scm | 49 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 8cc65aaf7e..efc11b686f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8755,3 +8755,52 @@ Features:
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public palapeli
+  (package
+    (name "palapeli")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/palapeli-" version ".tar.xz"))
+       (sha256
+        (base32 "1g91ydbc0x2y2gn3lcb5w03mn7k78l5bq4cb1s59kx6yjbflv3pw"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("karchive" ,karchive)
+       ("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kcrash" ,kcrash)
+       ("ki18n" ,ki18n)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kitemviews" ,kitemviews)
+       ("knotifications" ,knotifications)
+       ("kservice" ,kservice)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)
+       ("shared-mime-info" ,shared-mime-info)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Jigsaw puzzle game")
+    (description "Palapeli is a jigsaw puzzle game.  Unlike other games in
+that genre, you are not limited to aligning pieces on imaginary grids.  The
+pieces are freely moveable.  Also, Palapeli features real persistency, i.e.
+everything you do is saved on your disk immediately.
+
+Palapeli is the Finnish word for jigsaw puzzle.
+
+This package is part of the KDE games module.")
+    (license license:gpl2+)))
-- 
2.21.0

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

* [bug#38386] [PATCH 25/38] gnu: Add kiriki.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (22 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 24/38] gnu: Add palapeli Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 26/38] gnu: Add kigo Hartmut Goebel
                     ` (12 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kiriki): New variable.
---
 gnu/packages/games.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index efc11b686f..de76a88efb 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8804,3 +8804,43 @@ Palapeli is the Finnish word for jigsaw puzzle.
 
 This package is part of the KDE games module.")
     (license license:gpl2+)))
+
+(define-public kiriki
+  (package
+    (name "kiriki")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/kiriki-" version ".tar.xz"))
+       (sha256
+        (base32 "1xg25dj95g81dc5l7k47am4j52abrwwfx4h73lvsbn4lc8lfmshw"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Yahtzee dice game")
+    (description "Kiriki is an addictive and fun dice game, designed to be
+played by as many as six players.
+
+Participants have to collect points by rolling five dice for up to three times
+per single turn to make combinations with the highest score.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 26/38] gnu: Add kigo.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (23 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 25/38] gnu: Add kiriki Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 27/38] gnu: Add kubrick Hartmut Goebel
                     ` (11 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kigo): New variable.
---
 gnu/packages/games.scm | 48 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index de76a88efb..5373cca327 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8844,3 +8844,51 @@ per single turn to make combinations with the highest score.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kigo
+  (package
+    (name "kigo")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/kigo-" version ".tar.xz"))
+       (sha256
+        (base32 "00l5gcbi8xyj9c1lngkrddka3a4m4cd78prfplrpq32ma9xq681f"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("knewstuff", knewstuff)
+       ("ktextwidgets" ,ktextwidgets)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Go board game")
+    (description "Kigo is an open-source implementation of the popular Go
+game.
+
+Go is a strategic board game for two players.  It is also known as
+igo (Japanese), weiqi or wei ch'i (Chinese) or baduk (Korean).  Go is noted
+for being rich in strategic complexity despite its simple rules.  The game is
+played by two players who alternately place black and white stones (playing
+pieces, now usually made of glass or plastic) on the vacant intersections of a
+grid of 19x19 lines (9x9 or 13x13 for easier games).
+
+You also need to install a go engine, e.g. @code{gnugo}.
+
+This package is part of the KDE games module.")
+    (license license:gpl3+)))
-- 
2.21.0

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

* [bug#38386] [PATCH 27/38] gnu: Add kubrick.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (24 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 26/38] gnu: Add kigo Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 28/38] gnu: Add lskat Hartmut Goebel
                     ` (10 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kubrick): New variable.
---
 gnu/packages/games.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 5373cca327..1c97894722 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8892,3 +8892,46 @@ You also need to install a go engine, e.g. @code{gnugo}.
 
 This package is part of the KDE games module.")
     (license license:gpl3+)))
+
+(define-public kubrick
+  (package
+    (name "kubrick")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/kubrick-" version ".tar.xz"))
+       (sha256
+        (base32 "0ma8wja4rqlsmsr8cyicfpkwlgqva4450ls4c0ql53p0kabf04gx"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("glu" ,glu)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Game based on Rubik's Cube")
+    (description "Kubrick is a game based on the Rubik's Cube puzzle.
+
+The cube sizes range from 2x2x2 up to 6x6x6, or you can play with irregular
+\"bricks\" such as 5x3x2 or \"mats\" such as 6x4x1 or 2x2x1.  The game has a
+selection of puzzles at several levels of difficulty, as well as demos of
+pretty patterns and solution moves, or you can make up your own puzzles.  The
+game has unlimited undo, redo, save and reload capabilities.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 28/38] gnu: Add lskat.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (25 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 27/38] gnu: Add kubrick Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 29/38] gnu: Add kapman Hartmut Goebel
                     ` (9 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (lskat): New variable.
---
 gnu/packages/games.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 1c97894722..a339f20ea4 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8935,3 +8935,43 @@ game has unlimited undo, redo, save and reload capabilities.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public lskat
+  (package
+    (name "lskat")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/lskat-" version ".tar.xz"))
+       (sha256
+        (base32 "1qk5hd27zb42pbcxq5wyzz62nj5f0qdmgy54r9rnk92pzzzk94s9"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Lieutnant Skat card game")
+    (description "Lieutnant Skat (from German \"Offiziersskat\") is a fun and
+engaging card game for two players, where the second player is either live
+opponent, or a built in artificial intelligence.
+
+Lieutnant Skat is a simplified variant of the Skat card game for two players.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 29/38] gnu: Add kapman.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (26 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 28/38] gnu: Add lskat Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 30/38] gnu: Add kspaceduel Hartmut Goebel
                     ` (8 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kapman): New variable.
---
 gnu/packages/games.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index a339f20ea4..62cb8eff0e 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8975,3 +8975,44 @@ Lieutnant Skat is a simplified variant of the Skat card game for two players.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public kapman
+  (package
+    (name "kapman")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kapman-" version ".tar.xz"))
+      (sha256
+       (base32 "03pq38caam30q4bw14c045kayw2d87xq1yaa3s2jkrylylfq3p0f"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Pac-Man clone")
+    (description "Kapman is a clone of the well known game Pac-Man.
+
+You must run through the maze to eat all pills without being captured by a
+ghost.  By eating an energizer, Kapman gets the ability to eat ghosts for a
+few seconds.  When a stage is cleared of pills and energizer the player is
+taken to the next stage with slightly increased game speed
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 30/38] gnu: Add kspaceduel.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (27 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 29/38] gnu: Add kapman Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 31/38] gnu: Add bovo Hartmut Goebel
                     ` (7 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kspaceduel): New variable.
---
 gnu/packages/games.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 62cb8eff0e..aef863e347 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9016,3 +9016,40 @@ taken to the next stage with slightly increased game speed
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kspaceduel
+  (package
+    (name "kspaceduel")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/kspaceduel-" version ".tar.xz"))
+       (sha256
+        (base32 "1hppni0ihs7psc0dly5rxyy2a38nzhlig9yfyhi3lkh36z05pql8"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Two player game with shooting spaceships flying around a sun")
+    (description "KSpaceduel is a space battle game for one or two players,
+where two ships fly around a star in a struggle to be the only survivor.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 31/38] gnu: Add bovo.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (28 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 30/38] gnu: Add kspaceduel Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:20   ` [bug#38386] [PATCH 32/38] gnu: Add killbots Hartmut Goebel
                     ` (6 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (bovo): New variable.
---
 gnu/packages/games.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index aef863e347..38a45ed8f2 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9053,3 +9053,41 @@ where two ships fly around a star in a struggle to be the only survivor.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public bovo
+  (package
+    (name "bovo")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/bovo-" version ".tar.xz"))
+       (sha256
+        (base32 "0dbpng0w52nahmx7brsll66zw23ql1g6pcvn2k4g2lnvxch0i59g"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Classic pen and paper game: five in a line")
+    (description "Bovo is a Gomoku (from Japanese 五目並べ - lit.  \"five
+points\") like game for two players, where the opponents alternate in placing
+their respective pictogram on the game board.  The winner is the first to
+complete a line of five markers.  (Also known as: Connect Five, Five in a row,
+X and O, Naughts and Crosses)
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 32/38] gnu: Add killbots.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (29 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 31/38] gnu: Add bovo Hartmut Goebel
@ 2019-11-26 13:20   ` Hartmut Goebel
  2019-11-26 13:21   ` [bug#38386] [PATCH 33/38] gnu: Add ksnakeduel Hartmut Goebel
                     ` (5 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:20 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (killbots): New variable.
---
 gnu/packages/games.scm | 43 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 38a45ed8f2..a88cbd8f74 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9091,3 +9091,46 @@ X and O, Naughts and Crosses)
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public killbots
+  (package
+    (name "killbots")
+    (version "19.08.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/applications/" version
+                           "/src/killbots-" version ".tar.xz"))
+       (sha256
+        (base32 "1qi86q7diw7glkp9v33yim9nhz2da4balbxa1hjrdgjdv8zdbxbm"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Port of the classic BSD console game robots")
+    (description "Killbots is a simple game of evading killer robots.
+
+Who created the robots and why they have been programmed to destroy, no one
+knows.  All that is known is that the robots are numerous and their sole
+objective is to destroy you.  Fortunately for you, their creator has focused
+on quantity rather than quality and as a result the robots are severely
+lacking in intelligence.  Your superior wit and a fancy teleportation device
+are your only weapons against the never-ending stream of mindless automatons.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 33/38] gnu: Add ksnakeduel.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (30 preceding siblings ...)
  2019-11-26 13:20   ` [bug#38386] [PATCH 32/38] gnu: Add killbots Hartmut Goebel
@ 2019-11-26 13:21   ` Hartmut Goebel
  2019-11-26 13:21   ` [bug#38386] [PATCH 34/38] gnu: Add kollision Hartmut Goebel
                     ` (4 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:21 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (ksnakeduel): New variable.
---
 gnu/packages/games.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index a88cbd8f74..4831fb31fc 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9134,3 +9134,43 @@ are your only weapons against the never-ending stream of mindless automatons.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public ksnakeduel
+  (package
+    (name "ksnakeduel")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/ksnakeduel-" version ".tar.xz"))
+      (sha256
+       (base32 "0mprrnpax8pv7ab36zwhvdfj8id52w8g6x76nnj8qvkdlkjiqdnn"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Snake race played against the computer")
+    (description "KSnakeDuel is a fast action game where you steer a snake
+which has to eat food.  While eating the snake grows.  But once a player
+collides with the other snake or the wall the game is lost.  This becomes of
+course more and more difficult the longer the snakes grow.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 34/38] gnu: Add kollision.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (31 preceding siblings ...)
  2019-11-26 13:21   ` [bug#38386] [PATCH 33/38] gnu: Add ksnakeduel Hartmut Goebel
@ 2019-11-26 13:21   ` Hartmut Goebel
  2019-11-26 13:21   ` [bug#38386] [PATCH 35/38] gnu: Add knavalbattle Hartmut Goebel
                     ` (3 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:21 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kollision): New variable.
---
 gnu/packages/games.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4831fb31fc..0f862a1645 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9174,3 +9174,42 @@ course more and more difficult the longer the snakes grow.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kollision
+  (package
+    (name "kollision")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kollision-" version ".tar.xz"))
+      (sha256
+       (base32 "1p7qrn3d0ybpvc9k6k5wzj54dsrp1rqh39844maz0ay2fhvmch12"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Simple ball dodging game")
+    (description "In Kollision you use mouse to control a small blue ball in a
+closed space environment filled with small red balls, which move about
+chaotically.  Your goal is to avoid touching any of those red balls with your
+blue one, because the moment you do the game will be over.  The longer you can
+stay in game the higher will your score be.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 35/38] gnu: Add knavalbattle.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (32 preceding siblings ...)
  2019-11-26 13:21   ` [bug#38386] [PATCH 34/38] gnu: Add kollision Hartmut Goebel
@ 2019-11-26 13:21   ` Hartmut Goebel
  2019-11-26 13:21   ` [bug#38386] [PATCH 36/38] gnu: Add kreversi Hartmut Goebel
                     ` (2 subsequent siblings)
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:21 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (knavalbattle): New variable.
---
 gnu/packages/games.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0f862a1645..0ba09f9fea 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9213,3 +9213,45 @@ stay in game the higher will your score be.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public knavalbattle
+  (package
+    (name "knavalbattle")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+"/src/knavalbattle-" version ".tar.xz"))
+      (sha256
+       (base32 "0sdfjplqkb30x2mvh66pkzay6vn5px87779sh2s8lpl6fcw0v9g4"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kauth" ,kauth)
+       ("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kdnssd" ,kdnssd)
+       ("ki18n" ,ki18n)
+       ("ktextwidgets" ,ktextwidgets)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Battleship board game with built-in game server")
+    (description "KBattleship is a Battle Ship game for KDE.
+
+Ships are placed on a board which represents the sea.  Players try to hit each
+others ships in turns without knowing where they are placed.  The first player
+to destroy all ships wins the game.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 36/38] gnu: Add kreversi.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (33 preceding siblings ...)
  2019-11-26 13:21   ` [bug#38386] [PATCH 35/38] gnu: Add knavalbattle Hartmut Goebel
@ 2019-11-26 13:21   ` Hartmut Goebel
  2019-11-26 13:21   ` [bug#38386] [PATCH 37/38] gnu: Add ksquares Hartmut Goebel
  2019-11-26 13:21   ` [bug#38386] [PATCH 38/38] gnu: Add kjumpingcube Hartmut Goebel
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:21 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kreversi): New variable.
---
 gnu/packages/games.scm | 44 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0ba09f9fea..b9468633a0 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9255,3 +9255,47 @@ to destroy all ships wins the game.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public kreversi
+  (package
+    (name "kreversi")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+"/src/kreversi-" version ".tar.xz"))
+      (sha256
+       (base32 "0b6q8df2bawgnrswhq59z37axad0q3zpvvzxdds7sz1lw505xw9h"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kdeclarative" ,kdeclarative)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kio" ,kio)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Old reversi board game, also known as othello")
+    (description "KReversi is a simple one player strategy game played
+against the computer.
+
+If a player's piece is captured by an opposing player, that piece is turned
+over to reveal the color of that player.  A winner is declared when one player
+has more pieces of his own color on the board and there are no more possible
+moves.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 37/38] gnu: Add ksquares.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (34 preceding siblings ...)
  2019-11-26 13:21   ` [bug#38386] [PATCH 36/38] gnu: Add kreversi Hartmut Goebel
@ 2019-11-26 13:21   ` Hartmut Goebel
  2019-11-26 13:21   ` [bug#38386] [PATCH 38/38] gnu: Add kjumpingcube Hartmut Goebel
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:21 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (ksquares): New variable.
---
 gnu/packages/games.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index b9468633a0..bf5b1ffd1f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9299,3 +9299,41 @@ moves.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:fdl1.2+))))
+
+(define-public ksquares
+  (package
+    (name "ksquares")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/ksquares-" version ".tar.xz"))
+      (sha256
+       (base32 "0hv8hls5s627lys08nnw72rfzsafj3dmp49mh2afzmh6lgk9h5vy"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcompletion" ,kcompletion)
+       ("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Dots and Boxes game")
+    (description "KSquares is an implementation of the popular paper based
+game Squares.  Two players take turns connecting dots on a grid to complete
+squares, the player with the most squares wins.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
-- 
2.21.0

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

* [bug#38386] [PATCH 38/38] gnu: Add kjumpingcube.
  2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
                     ` (35 preceding siblings ...)
  2019-11-26 13:21   ` [bug#38386] [PATCH 37/38] gnu: Add ksquares Hartmut Goebel
@ 2019-11-26 13:21   ` Hartmut Goebel
  36 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-11-26 13:21 UTC (permalink / raw)
  To: 38386

* gnu/packages/games.scm (kjumpingcube): New variable.
---
 gnu/packages/games.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index bf5b1ffd1f..cc9b78fa64 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9337,3 +9337,42 @@ squares, the player with the most squares wins.
 
 This package is part of the KDE games module.")
     (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public kjumpingcube
+  (package
+    (name "kjumpingcube")
+    (version "19.08.3")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://kde/stable/applications/" version
+                          "/src/kjumpingcube-" version ".tar.xz"))
+      (sha256
+       (base32 "0d67zqkf2xffjkj671gl2n6nj6jajyn6rgqqj5i6gm500mqi9rm1"))))
+    (properties `((tags . ("Desktop" "KDE" "Games"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("kxmlgui" ,kxmlgui)
+       ("libkdegames" ,libkdegames)
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://games.kde.org/")
+    (synopsis "Simple tactical game for number-crunchers")
+    (description "KJumpingcube is a simple tactical game for one or two
+players, played on a grid of numbered squares.  Each turn, players compete for
+control of the board by capturing or adding to one square.
+
+This package is part of the KDE games module.")
+    (license (list license:gpl2+ license:fdl1.2+))))
-- 
2.21.0

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

* bug#38386: Pushed: Add 36 KDE games.
       [not found] ` <handler.38386.B.157477438421753.ack@debbugs.gnu.org>
@ 2019-12-10 16:31   ` Hartmut Goebel
  0 siblings, 0 replies; 40+ messages in thread
From: Hartmut Goebel @ 2019-12-10 16:31 UTC (permalink / raw)
  To: 38386-close

Pushed as 51e9aecb497ae074755f773d6deb228e2ab08d86

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

end of thread, other threads:[~2019-12-10 16:32 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-26 13:19 [bug#38386] [PATCH 00/38] Add 36 KDE games Hartmut Goebel
2019-11-26 13:20 ` [bug#38386] [PATCH 01/38] gnu: Add libkdegames Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 02/38] gnu: Add ktuberling Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 03/38] gnu: Add picmi Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 04/38] gnu: Add kolf Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 05/38] gnu: Add libkmahjongg Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 06/38] gnu: Add kmahjongg Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 07/38] gnu: Add kshisen Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 08/38] gnu: Add kajongg Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 09/38] gnu: Add kbreakout Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 10/38] gnu: Add kmines Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 11/38] gnu: Add konquest Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 12/38] gnu: Add kbounce Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 13/38] gnu: Add kblocks Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 14/38] gnu: Add ksudoku Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 15/38] gnu: Add klines Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 16/38] gnu: Add kgoldrunner Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 17/38] gnu: Add kdiamond Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 18/38] gnu: Add kfourinline Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 19/38] gnu: Add kblackbox Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 20/38] gnu: Add knetwalk Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 21/38] gnu: Add bomber Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 22/38] gnu: Add granatier Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 23/38] gnu: Add ksirk Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 24/38] gnu: Add palapeli Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 25/38] gnu: Add kiriki Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 26/38] gnu: Add kigo Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 27/38] gnu: Add kubrick Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 28/38] gnu: Add lskat Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 29/38] gnu: Add kapman Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 30/38] gnu: Add kspaceduel Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 31/38] gnu: Add bovo Hartmut Goebel
2019-11-26 13:20   ` [bug#38386] [PATCH 32/38] gnu: Add killbots Hartmut Goebel
2019-11-26 13:21   ` [bug#38386] [PATCH 33/38] gnu: Add ksnakeduel Hartmut Goebel
2019-11-26 13:21   ` [bug#38386] [PATCH 34/38] gnu: Add kollision Hartmut Goebel
2019-11-26 13:21   ` [bug#38386] [PATCH 35/38] gnu: Add knavalbattle Hartmut Goebel
2019-11-26 13:21   ` [bug#38386] [PATCH 36/38] gnu: Add kreversi Hartmut Goebel
2019-11-26 13:21   ` [bug#38386] [PATCH 37/38] gnu: Add ksquares Hartmut Goebel
2019-11-26 13:21   ` [bug#38386] [PATCH 38/38] gnu: Add kjumpingcube Hartmut Goebel
     [not found] ` <handler.38386.B.157477438421753.ack@debbugs.gnu.org>
2019-12-10 16:31   ` bug#38386: Pushed: Add 36 KDE games Hartmut Goebel

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).