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

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

bug#53016: closed ([PATCH] gnu: freedroidrpg: Update to 1.0rc1.)


From: GNU bug Tracking System
Subject: bug#53016: closed ([PATCH] gnu: freedroidrpg: Update to 1.0rc1.)
Date: Wed, 18 May 2022 15:06:01 +0000

Your message dated Wed, 18 May 2022 11:05:07 -0400
with message-id <877d6i2864.fsf@gmail.com>
and subject line Re: bug#53016: [PATCH] gnu: freedroidrpg: Update to 1.0rc1.
has caused the debbugs.gnu.org bug report #53016,
regarding [PATCH] gnu: freedroidrpg: Update to 1.0rc1.
to be marked as done.

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


-- 
53016: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=53016
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: freedroidrpg: Update to 1.0rc1. Date: Tue, 4 Jan 2022 22:23:14 +0000
* gnu/packages/games.scm (freedroidrpg): Update to 1.0rc1.
  [source]: Handle rc suffix in version number.
  [arguments]: Add -fcommon to CFLAGS.
  [inputs]: Use new simplified format. Add glew.
---
 gnu/packages/games.scm | 40 ++++++++++++++++++++++------------------
 1 file changed, 22 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 5896fa4333..123136f65c 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -1349,20 +1349,23 @@ effects and music to make a completely free game.")
 (define-public freedroidrpg
   (package
     (name "freedroidrpg")
-    (version "0.16.1")
+    (version "1.0rc1")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "http://ftp.osuosl.org/pub/freedroid/";
-                           "freedroidRPG-" (version-major+minor version) "/"
-                           "freedroidRPG-" version ".tar.gz"))
+       (uri (let ((major+minor
+                    (version-major+minor
+                      (string-replace-substring version "rc" "."))))
+             (string-append "http://ftp.osuosl.org/pub/freedroid/";
+                            "freedroidRPG-" major+minor "/"
+                            "freedroidRPG-" version ".tar.gz")))
        (sha256
-        (base32 "0n4kn38ncmcy3lrxmq8fjry6c1z50z4q1zcqfig0j4jb0dsz2va2"))))
+        (base32 "1rywdngsfhkxv5gsya3dvv8kjxs5zjv57a3h364q9llsc82kdcxa"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags
        (list
-        (string-append "CFLAGS="
+        (string-append "CFLAGS=-fcommon "
                        "-I" (assoc-ref %build-inputs "sdl-gfx") "/include/SDL "
                        "-I" (assoc-ref %build-inputs "sdl-image") 
"/include/SDL "
                        "-I" (assoc-ref %build-inputs "sdl-mixer") 
"/include/SDL")
@@ -1374,18 +1377,19 @@ effects and music to make a completely free game.")
     (native-inputs
      (list pkg-config))
     (inputs
-     `(("glu" ,glu)
-       ("libjpeg" ,libjpeg-turbo)
-       ("libogg" ,libogg)
-       ("libpng" ,libpng)
-       ("libvorbis" ,libvorbis)
-       ("mesa" ,mesa)
-       ("python" ,python-wrapper)
-       ("sdl" ,sdl)
-       ("sdl-gfx" ,sdl-gfx)
-       ("sdl-image" ,sdl-image)
-       ("sdl-mixer" ,sdl-mixer)
-       ("zlib" ,zlib)))
+     (list glew
+           glu
+           libjpeg-turbo
+           libogg
+           libpng
+           libvorbis
+           mesa
+           python-wrapper
+           sdl
+           sdl-gfx
+           sdl-image
+           sdl-mixer
+           zlib))
     (home-page "https://www.freedroid.org/";)
     (synopsis "Isometric role-playing game against killer robots")
     (description
-- 
2.30.2




--- End Message ---
--- Begin Message --- Subject: Re: bug#53016: [PATCH] gnu: freedroidrpg: Update to 1.0rc1. Date: Wed, 18 May 2022 11:05:07 -0400 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux)
Hello,

Felix Gruber <felgru@posteo.net> writes:

> * gnu/packages/games.scm (freedroidrpg): Update to 1.0rc1.
>   [source]: Handle rc suffix in version number.
>   [arguments]: Add -fcommon to CFLAGS.
>   [inputs]: Use new simplified format. Add glew.

Updated to 1.0rc2.

Thank you!

Maxim


--- End Message ---

reply via email to

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