unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#32283: Add chroma (a little video game)
@ 2018-07-26 21:40 Christopher Lemmer Webber
  2018-07-28 20:57 ` Björn Höfling
  2018-07-29  7:38 ` Ricardo Wurmus
  0 siblings, 2 replies; 3+ messages in thread
From: Christopher Lemmer Webber @ 2018-07-26 21:40 UTC (permalink / raw)
  To: 32283


[-- Attachment #1.1: 0001-gnu-Add-chroma.patch --]
[-- Type: text/x-patch, Size: 2723 bytes --]

From 3ca38f3813eb7e6473673622de04b8fbb03d256d Mon Sep 17 00:00:00 2001
From: Christopher Lemmer Webber <cwebber@dustycloud.org>
Date: Thu, 26 Jul 2018 17:37:53 -0400
Subject: [PATCH] gnu: Add chroma.

* gnu/packages/games.scm (chroma): New variable.
---
 gnu/packages/games.scm | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4af0b52e8..b19caacc7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -10,7 +10,7 @@
 ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2015, 2016 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
-;;; Copyright © 2015, 2017 Christopher Allan Webber <cwebber@dustycloud.org>
+;;; Copyright © 2015, 2017, 2018 Christopher Lemmer Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2015, 2016, 2017 Alex Kost <alezost@gmail.com>
 ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
@@ -3983,6 +3983,38 @@ laws of physics (Enigma’s special laws of physics, that is), controlling them
 with the mouse isn’t always trivial.")
     (license license:gpl2+)))
 
+(define-public chroma
+  (package
+    (name "chroma")
+    (version "1.15")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://level7.org.uk/chroma/download/chroma-"
+                                  version ".tar.bz2"))
+              (sha256
+               (base32
+                "0nzm3j5wjazr1d6pkydqlc48sjf72hggq0hmx8mhq03114mmiir5"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f)) ; no tests included
+    (inputs
+     `(("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer sdl-ttf)))
+       ("freetype" ,freetype)
+       ("ncurses" ,ncurses)
+       ("fontconfig" ,fontconfig)
+       ("libxft" ,libxft)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "http://level7.org.uk/chroma/")
+    (synopsis "Abstract puzzle game")
+    (description "Chroma is an abstract puzzle game. A variety of colourful
+shapes are arranged in a series of increasingly complex patterns, forming
+ fiendish traps that must be disarmed and mysterious puzzles that must be
+ manipulated in order to give up their subtle secrets. Initially so
+ straightforward that anyone can pick it up and begin to play, yet gradually
+ becoming difficult enough to tax even the brightest of minds.")
+    (license license:gpl2+)))
+
 (define-public fillets-ng
   (package
     (name "fillets-ng")
-- 
2.18.0


[-- Attachment #1.2: Type: text/plain, Size: 143 bytes --]


BTW I also updated my copyright line in the process.  I should probably
do it in other files as well, since I've patched my name IRL as well.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

* bug#32283: Add chroma (a little video game)
  2018-07-26 21:40 bug#32283: Add chroma (a little video game) Christopher Lemmer Webber
@ 2018-07-28 20:57 ` Björn Höfling
  2018-07-29  7:38 ` Ricardo Wurmus
  1 sibling, 0 replies; 3+ messages in thread
From: Björn Höfling @ 2018-07-28 20:57 UTC (permalink / raw)
  To: Christopher Lemmer Webber; +Cc: 32283

[-- Attachment #1: Type: text/plain, Size: 3030 bytes --]

On Thu, 26 Jul 2018 17:40:06 -0400
Christopher Lemmer Webber <cwebber@dustycloud.org> wrote:

> From 3ca38f3813eb7e6473673622de04b8fbb03d256d Mon Sep 17 00:00:00 2001
> From: Christopher Lemmer Webber <cwebber@dustycloud.org>
> Date: Thu, 26 Jul 2018 17:37:53 -0400
> Subject: [PATCH] gnu: Add chroma.
> 
> * gnu/packages/games.scm (chroma): New variable.
> ---
>  gnu/packages/games.scm | 34 +++++++++++++++++++++++++++++++++-
>  1 file changed, 33 insertions(+), 1 deletion(-)
> 
> diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
> index 4af0b52e8..b19caacc7 100644
> --- a/gnu/packages/games.scm
> +++ b/gnu/packages/games.scm
> @@ -10,7 +10,7 @@
>  ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
>  ;;; Copyright © 2015, 2016 Andreas Enge <andreas@enge.fr>
>  ;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
> -;;; Copyright © 2015, 2017 Christopher Allan Webber
> <cwebber@dustycloud.org> +;;; Copyright © 2015, 2017, 2018
> Christopher Lemmer Webber <cwebber@dustycloud.org> ;;; Copyright ©
> 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;;
> Copyright © 2015, 2016, 2017 Alex Kost <alezost@gmail.com> ;;;
> Copyright © 2015 Paul van der Walt <paul@denknerd.org> @@ -3983,6
> +3983,38 @@ laws of physics (Enigma’s special laws of physics, that
> is), controlling them with the mouse isn’t always trivial.") (license
> license:gpl2+))) 
> +(define-public chroma
> +  (package
> +    (name "chroma")
> +    (version "1.15")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> "http://level7.org.uk/chroma/download/chroma-"
> +                                  version ".tar.bz2"))
> +              (sha256
> +               (base32
> +
> "0nzm3j5wjazr1d6pkydqlc48sjf72hggq0hmx8mhq03114mmiir5"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     `(#:tests? #f)) ; no tests included
> +    (inputs
> +     `(("sdl-union" ,(sdl-union (list sdl sdl-image sdl-mixer
> sdl-ttf)))
> +       ("freetype" ,freetype)
> +       ("ncurses" ,ncurses)
> +       ("fontconfig" ,fontconfig)
> +       ("libxft" ,libxft)))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (home-page "http://level7.org.uk/chroma/")
> +    (synopsis "Abstract puzzle game")
> +    (description "Chroma is an abstract puzzle game. A variety of
> colourful +shapes are arranged in a series of increasingly complex
> patterns, forming
> + fiendish traps that must be disarmed and mysterious puzzles that
> must be
> + manipulated in order to give up their subtle secrets. Initially so
> + straightforward that anyone can pick it up and begin to play, yet
> gradually
> + becoming difficult enough to tax even the brightest of minds.")
> +    (license license:gpl2+)))
> +
>  (define-public fillets-ng
>    (package
>      (name "fillets-ng")

LGTM.

The only "bug" here is you posted it to the bugs tracker, not the
patches-tracker.

Björn


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

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

* bug#32283: Add chroma (a little video game)
  2018-07-26 21:40 bug#32283: Add chroma (a little video game) Christopher Lemmer Webber
  2018-07-28 20:57 ` Björn Höfling
@ 2018-07-29  7:38 ` Ricardo Wurmus
  1 sibling, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2018-07-29  7:38 UTC (permalink / raw)
  To: Christopher Lemmer Webber; +Cc: 32283-done


Christopher Lemmer Webber <cwebber@dustycloud.org> writes:

> From 3ca38f3813eb7e6473673622de04b8fbb03d256d Mon Sep 17 00:00:00 2001
> From: Christopher Lemmer Webber <cwebber@dustycloud.org>
> Date: Thu, 26 Jul 2018 17:37:53 -0400
> Subject: [PATCH] gnu: Add chroma.
>
> * gnu/packages/games.scm (chroma): New variable.
> ---

Thank you.  Pushed to the “master” branch with commit 10d531536.

-- 
Ricardo

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

end of thread, other threads:[~2018-07-29  7:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-26 21:40 bug#32283: Add chroma (a little video game) Christopher Lemmer Webber
2018-07-28 20:57 ` Björn Höfling
2018-07-29  7:38 ` Ricardo Wurmus

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