emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#46598: closed ([PATCH] gnu: Add vitetris.)


From: GNU bug Tracking System
Subject: bug#46598: closed ([PATCH] gnu: Add vitetris.)
Date: Thu, 18 Feb 2021 21:45:01 +0000

Your message dated Thu, 18 Feb 2021 22:44:08 +0100
with message-id <87k0r5m4pj.fsf@nicolasgoaziou.fr>
and subject line Re: [bug#46598] [PATCH] gnu: Add vitetris.
has caused the debbugs.gnu.org bug report #46598,
regarding [PATCH] gnu: Add vitetris.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
46598: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=46598
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add vitetris. Date: Wed, 17 Feb 2021 21:08:53 +0100
* gnu/packages/games.scm (vitetris): New variable.
---
 gnu/packages/games.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index d8c98a9a2f..9683e1cbb7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -57,6 +57,7 @@
 ;;; Copyright © 2020 Lu hux <luhux@outlook.com>
 ;;; Copyright © 2020 Tomás Ortín Fernández <tomasortin@mailbox.org>
 ;;; Copyright © 2021 Olivier Rojon <o.rojon@posteo.net>
+;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -545,6 +546,39 @@ Playing bastet can be a painful experience, especially if 
you usually make
 canyons and wait for the long I-shaped block to clear four rows at a time.")
     (license license:gpl3+)))
 
+(define-public vitetris
+  (package
+    (name "vitetris")
+    (version "v0.59.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/vicgeralds/vitetris";)
+             (commit version)))
+       (sha256
+        (base32 "1ah1c5g7abksif0n8v5rb7r4pn2az20c3mkp4ak13vgs23ddmds5"))
+       (file-name (git-file-name name version))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                  (replace 'configure
+                    (lambda _
+                      ;; the non standard configure script does not accept
+                      ;; standard parameters -> invoke configure by hand
+                      (invoke "./configure")
+                      ;; src/src-conf.mk must be writable for the build step
+                      (chmod "src/src-conf.mk" #o666)
+                      #t)))
+       #:tests? #f   ; no test
+       #:make-flags
+       (list ,(string-append "CC=" (cc-for-target))
+             (string-append "DESTDIR=" (assoc-ref %outputs "out")))))
+    (home-page "http://victornils.net/tetris/";)
+    (synopsis "Terminal-based tetris clone")
+    (description "Classic multiplayer tetris for the terminal.")
+    (license license:bsd-2)))
+
 (define-public blobwars
   (package
     (name "blobwars")
-- 
2.25.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#46598] [PATCH] gnu: Add vitetris. Date: Thu, 18 Feb 2021 22:44:08 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)
Stefan Reichör <stefan@xsteve.at> writes:

> I didn't think that I am able to produce a patch with that many little
> shortcomings ;-)

Heh :)

> Of course - I hope that I have addressed all the issues.

Perfect! Applied. Thank you!

Regards,


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]