all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#63457] [PATCH] gnu: rogue: Add 5.4.4
@ 2023-05-11 20:20 Jakob Kirsch
  2023-05-17 18:52 ` [bug#63457] [PATCH v1] " Jakob Kirsch
  0 siblings, 1 reply; 3+ messages in thread
From: Jakob Kirsch @ 2023-05-11 20:20 UTC (permalink / raw)
  To: 63457; +Cc: Jakob Kirsch

---
 gnu/packages/games.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index bae79ee48b..3cfa58fc7f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -2369,6 +2369,28 @@ (define-public robotfindskitten
     (home-page "http://robotfindskitten.org/")
     (license license:gpl2+)))

+(define-public rogue
+  (package
+    (name "rogue")
+    (version "5.4.4")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/Davidslv/rogue")
+                    (commit "cf9bd26d564a72fac4cf56b55c96c2435270d29a")))
+              (sha256
+               (base32
+                "0mk03l120scas4dcn6xccnhslnwmcx2blshbf925z06yk7rkzias"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list "CFLAGS=-DNCURSES_INTERNALS")))
+    (inputs (list ncurses))
+    (synopsis "Original Rogue Game (5.4.4)")
+    (description "Rogue 5.4.4: Exploring the Dungeons of Doom")
+    (home-page "https://github.com/Davidslv/rogue")
+    (license license:bsd-3)))
+
 (define-public roguebox-adventures
   (package
     (name "roguebox-adventures")

base-commit: 642b73a029adef8e35c39b1bd56eb4b15b7d3504
--
2.39.2





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

* [bug#63457] [PATCH v1] gnu: rogue: Add 5.4.4
  2023-05-11 20:20 [bug#63457] [PATCH] gnu: rogue: Add 5.4.4 Jakob Kirsch
@ 2023-05-17 18:52 ` Jakob Kirsch
  2023-06-08 21:07   ` bug#63457: [PATCH] " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Jakob Kirsch @ 2023-05-17 18:52 UTC (permalink / raw)
  To: 63457; +Cc: Jakob Kirsch

fix the guix lint warning

---
 gnu/packages/games.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index d1e2248588..5048075081 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -877,6 +877,29 @@ (define-public bsd-games
               ;; phantasia (all but phantasia/pathnames.h.in, which is bsd-3)
               (license:fsf-free "file:///phantasia/COPYRIGHT")))))

+(define-public rogue
+  (package
+    (name "rogue")
+    (version "5.4.4")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/Davidslv/rogue")
+                    (commit "cf9bd26d564a72fac4cf56b55c96c2435270d29a")))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0mk03l120scas4dcn6xccnhslnwmcx2blshbf925z06yk7rkzias"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f
+       #:make-flags (list "CFLAGS=-DNCURSES_INTERNALS")))
+    (inputs (list ncurses))
+    (synopsis "Original Rogue Game (5.4.4)")
+    (description "Rogue 5.4.4: Exploring the Dungeons of Doom")
+    (home-page "https://github.com/Davidslv/rogue")
+    (license license:bsd-3)))
+

 (define-public bzflag
   (package

base-commit: 0540f4e20de3172ea09e27182e98b66b73c92421
--
2.39.2





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

* bug#63457: [PATCH] gnu: rogue: Add 5.4.4
  2023-05-17 18:52 ` [bug#63457] [PATCH v1] " Jakob Kirsch
@ 2023-06-08 21:07   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2023-06-08 21:07 UTC (permalink / raw)
  To: Jakob Kirsch; +Cc: 63457-done

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

Hi Jakob,

Applied with the changes below together with a commit log, following our
conventions:

  https://guix.gnu.org/manual/devel/en/html_node/Submitting-Patches.html

Thank you!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 674 bytes --]

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 6530cf89de..8c00c2e66e 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -895,8 +895,10 @@ (define-public rogue
      `(#:tests? #f
        #:make-flags (list "CFLAGS=-DNCURSES_INTERNALS")))
     (inputs (list ncurses))
-    (synopsis "Original Rogue Game (5.4.4)")
-    (description "Rogue 5.4.4: Exploring the Dungeons of Doom")
+    (synopsis "Original rogue game")
+    (description
+     "This package provides ``Rogue: Exploring the Dungeons of Doom'', the
+original rogue game found on 4.2BSD.")
     (home-page "https://github.com/Davidslv/rogue")
     (license license:bsd-3)))
 

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

end of thread, other threads:[~2023-06-08 21:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-11 20:20 [bug#63457] [PATCH] gnu: rogue: Add 5.4.4 Jakob Kirsch
2023-05-17 18:52 ` [bug#63457] [PATCH v1] " Jakob Kirsch
2023-06-08 21:07   ` bug#63457: [PATCH] " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.