GNU bug report logs - #55532
[PATCH] gnu: Add freerct.

Previous Next

Package: guix-patches;

Reported by: Gabriel Arazas <foo.dogsquared <at> gmail.com>

Date: Fri, 20 May 2022 04:05:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

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 55532 in the body.
You can then email your comments to 55532 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#55532; Package guix-patches. (Fri, 20 May 2022 04:05:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Gabriel Arazas <foo.dogsquared <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 20 May 2022 04:05:02 GMT) Full text and rfc822 format available.

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

From: Gabriel Arazas <foo.dogsquared <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Gabriel Arazas <foo.dogsquared <at> gmail.com>
Subject: [PATCH] gnu: Add freerct.
Date: Fri, 20 May 2022 12:03:50 +0800
* gnu/packages/games.scm (freerct): New variable.
---
 gnu/packages/games.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index c6d23298ff..c1873d4a02 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -71,6 +71,7 @@
 ;;; Copyright © 2022 Yovan Naumovski <yovan <at> gorski.stream>
 ;;; Copyright © 2022 Roman Riabenko <roman <at> riabenko.com>
 ;;; Copyright © 2022 zamfofex <zamfofex <at> twdb.moe>
+;;; Copyright © 2022 Gabriel Arazas <foo.dogsquared <at> gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -12715,3 +12716,37 @@ (define-public liquidwar6
 original, they have been invented by Thomas Colcombet.")
     (home-page "https://www.gnu.org/software/liquidwar6/")
     (license license:gpl3+)))
+
+(define-public freerct
+  (package
+    (name "freerct")
+    (version "0.1")
+    ;; TODO: Use the source code given at the homepage.
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/FreeRCT/FreeRCT")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1szwy2cq4ffp4yxm9pp9vdyia0i5nz0wnppdd1xb9w7v3wa4mywi"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f))
+    (native-inputs (list flex bison))
+    (inputs (list libpng sdl2 sdl2-ttf))
+    (home-page "https://freerct.net/")
+    (synopsis "Theme park management simulation game")
+    (description
+     "FreeRCT is a free and open source game that captures the look and feel
+of the popular games RollerCoaster Tycoon 1 and 2, graphics- and
+gameplay-wise.
+
+In this game, you play as a manager of a theme park, allowing
+you to make a park of your dreams.  The list of responsiblities includes
+managing staff, finances, landscaping, and most importantly: rides. Good
+managers follow the principle of prioritizing the guests' happiness with a
+well-maintained park.  Should they go unwise, a theme park plunge into chaos
+with vandalizing guests and unsafe rides. Which path will you take?")
+    (license license:gpl2)))

base-commit: b6bfe9ea6a1b19159455b34f1af4ac00ef9b94ab
-- 
2.36.0





Information forwarded to guix-patches <at> gnu.org:
bug#55532; Package guix-patches. (Fri, 20 May 2022 09:19:01 GMT) Full text and rfc822 format available.

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

From: Gabriel Arazas <foo.dogsquared <at> gmail.com>
To: 55532 <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: Add freerct.
Date: Fri, 20 May 2022 17:18:33 +0800
I opted into the Git repo instead of the zip archive since I cannot get 
consistent results with it (with the '--rounds=3' flag). The package is 
tested to be built in x86_64. Other architectures are yet to be 
confirmed since I cannot build it successfully.




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 01 Jun 2022 21:19:01 GMT) Full text and rfc822 format available.

Notification sent to Gabriel Arazas <foo.dogsquared <at> gmail.com>:
bug acknowledged by developer. (Wed, 01 Jun 2022 21:19:01 GMT) Full text and rfc822 format available.

Message #13 received at 55532-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Gabriel Arazas <foo.dogsquared <at> gmail.com>
Cc: 55532-done <at> debbugs.gnu.org
Subject: Re: bug#55532: [PATCH] gnu: Add freerct.
Date: Wed, 01 Jun 2022 23:18:47 +0200
[Message part 1 (text/plain, inline)]
Hi,

Gabriel Arazas <foo.dogsquared <at> gmail.com> skribis:

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

Applied with the following changes: the TODO wasn’t necessary IMO (it’s
fine to fetch code from Git), and it’s not necessary to say it’s a free
game (everything’s free software in here!).

Thanks,
Ludo’.

[Message part 2 (text/x-patch, inline)]
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index ba3b6e89a5..9697471b3f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -12699,7 +12699,6 @@ (define-public freerct
   (package
     (name "freerct")
     (version "0.1")
-    ;; TODO: Use the source code given at the homepage.
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -12717,9 +12716,8 @@ (define-public freerct
     (home-page "https://freerct.net/")
     (synopsis "Theme park management simulation game")
     (description
-     "FreeRCT is a free and open source game that captures the look and feel
-of the popular games RollerCoaster Tycoon 1 and 2, graphics- and
-gameplay-wise.
+     "FreeRCT is a game that captures the look and feel of the popular games
+RollerCoaster Tycoon 1 and 2, graphics- and gameplay-wise.
 
 In this game, you play as a manager of a theme park, allowing
 you to make a park of your dreams.  The list of responsiblities includes

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

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

Previous Next


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