GNU bug report logs - #57743
[PATCH] gnu: Add tetzle.

Previous Next

Package: guix-patches;

Reported by: Hendursaga <hendursaga <at> aol.com>

Date: Sun, 11 Sep 2022 21:49:02 UTC

Severity: normal

Tags: patch

Merged with 57812

Done: Björn Höfling <bjoern.hoefling <at> bjoernhoefling.de>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57743 in the body.
You can then email your comments to 57743 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57743; Package guix-patches. (Sun, 11 Sep 2022 21:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Hendursaga <hendursaga <at> aol.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 11 Sep 2022 21:49:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Hendursaga <hendursaga <at> aol.com>
To: guix-patches <at> gnu.org
Cc: Hendursaga <hendursaga <at> aol.com>
Subject: [PATCH] gnu: Add tetzle.
Date: Sun, 11 Sep 2022 17:47:13 -0400
* gnu/packages/games.scm (tetzle): New public variable.
---
 gnu/packages/games.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 2c7f892f19..a5179b86fa 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -73,6 +73,7 @@
 ;;; Copyright © 2022 zamfofex <zamfofex <at> twdb.moe>
 ;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared <at> gmail.com>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
+;;; Copyright © 2022 Hendursaga <hendursaga <at> aol.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -11169,3 +11170,32 @@ (define-public freerct
 Should they go unwise, a theme park plunge into chaos with vandalizing guests
 and unsafe rides.  Which path will you take?")
     (license license:gpl2)))
+
+(define-public tetzle
+  (package
+    (name "tetzle")
+    (version "2.2.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://gottcode.org/"
+                                  name
+                                  "/"
+                                  name
+                                  "-"
+                                  version
+                                  "-src.tar.bz2"))
+              (sha256
+               (base32
+                "1m4j4lzqp8fnwmvyglmzcn3vh14ix4hhh52ycmcsjgrsgj1w4p6a"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f))
+    (native-inputs (list qttools))
+    (inputs (list qtbase))
+    (home-page "https://gottcode.org/tetzle/")
+    (synopsis "Jigsaw puzzle game that uses tetrominoes for the pieces")
+    (description
+     "Tetzle is a jigsaw puzzle game that uses tetrominoes for the pieces.  Any image
+can be imported and used to create puzzles with a wide range of sizes.  Games are
+saved automatically, and you can select between currently in progress games.")
+    (license license:gpl3+)))
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57743; Package guix-patches. (Wed, 14 Sep 2022 08:23:01 GMT) Full text and rfc822 format available.

Message #8 received at 57743 <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Hendursaga <hendursaga <at> aol.com>
Cc: 57743 <at> debbugs.gnu.org
Subject: Re: [bug#57743] [PATCH] gnu: Add tetzle.
Date: Wed, 14 Sep 2022 09:15:28 +0100
[Message part 1 (text/plain, inline)]
Hendursaga via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/games.scm (tetzle): New public variable.
> ---
>  gnu/packages/games.scm | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)

Hey Hendursaga,

Thanks for the patch. I've made one comment below.

> diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
> index 2c7f892f19..a5179b86fa 100644
> --- a/gnu/packages/games.scm
> +++ b/gnu/packages/games.scm
> @@ -73,6 +73,7 @@
>  ;;; Copyright © 2022 zamfofex <zamfofex <at> twdb.moe>
>  ;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared <at> gmail.com>
>  ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
> +;;; Copyright © 2022 Hendursaga <hendursaga <at> aol.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -11169,3 +11170,32 @@ (define-public freerct
>  Should they go unwise, a theme park plunge into chaos with vandalizing guests
>  and unsafe rides.  Which path will you take?")
>      (license license:gpl2)))
> +
> +(define-public tetzle
> +  (package
> +    (name "tetzle")
> +    (version "2.2.1")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "https://gottcode.org/"
> +                                  name
> +                                  "/"
> +                                  name
> +                                  "-"
> +                                  version
> +                                  "-src.tar.bz2"))
> +              (sha256
> +               (base32
> +                "1m4j4lzqp8fnwmvyglmzcn3vh14ix4hhh52ycmcsjgrsgj1w4p6a"))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     `(#:tests? #f))

Why are the tests disabled? It's good to run the tests if that's
possible. If it's not possible, it's good to add a comment describing
why the tests can't be run.

> +    (native-inputs (list qttools))
> +    (inputs (list qtbase))
> +    (home-page "https://gottcode.org/tetzle/")
> +    (synopsis "Jigsaw puzzle game that uses tetrominoes for the pieces")
> +    (description
> +     "Tetzle is a jigsaw puzzle game that uses tetrominoes for the pieces.  Any image
> +can be imported and used to create puzzles with a wide range of sizes.  Games are
> +saved automatically, and you can select between currently in progress games.")
> +    (license license:gpl3+)))
[signature.asc (application/pgp-signature, inline)]

Merged 57743 57812. Request was from Björn Höfling <bjoern.hoefling <at> bjoernhoefling.de> to control <at> debbugs.gnu.org. (Thu, 22 Sep 2022 08:14:01 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 21 Oct 2022 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 159 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.