unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43471] [PATCH 0/1] gnu: supertuxkart: Update to 1.2
@ 2020-09-17 16:37 Raphaël Mélotte
  2020-09-17 16:58 ` [bug#43471] [PATCH 1/1] " Raphaël Mélotte
  2020-09-21  7:15 ` bug#43471: [PATCH 0/1] " Efraim Flashner
  0 siblings, 2 replies; 3+ messages in thread
From: Raphaël Mélotte @ 2020-09-17 16:37 UTC (permalink / raw)
  To: 43471; +Cc: raphael.melotte

Hello,

I bumped SuperTuxKart to the latest release, 1.2.

The URL has changed to use camel case, and I removed the deletion of
some bundled libraries from the snippet, because they are no longer
bundled in this version.

Some bundled libraries which are not part of Guix yet are still used.

Also to note: SuperTuxKart's source is now also available on Github,
which according to the project could be faster:
https://blog.supertuxkart.net/2020/08/supertuxkart-12-release.html

I kept the sourceforge link because according to the project the Github link
"is a fallback".

Raphaël Mélotte (1):
  gnu: supertuxkart: Update to 1.2

 gnu/packages/games.scm | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

-- 
2.28.0





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

* [bug#43471] [PATCH 1/1] gnu: supertuxkart: Update to 1.2
  2020-09-17 16:37 [bug#43471] [PATCH 0/1] gnu: supertuxkart: Update to 1.2 Raphaël Mélotte
@ 2020-09-17 16:58 ` Raphaël Mélotte
  2020-09-21  7:15 ` bug#43471: [PATCH 0/1] " Efraim Flashner
  1 sibling, 0 replies; 3+ messages in thread
From: Raphaël Mélotte @ 2020-09-17 16:58 UTC (permalink / raw)
  To: 43471; +Cc: raphael.melotte

* gnu/packages/games.scm (supertuxkart): Update to 1.2
[source]: Update snippet, some of the previously bundled libraries are
gone. Also update URL.
[inputs]: Add sdl2

Signed-off-by: Raphaël Mélotte <raphael.melotte@mind.be>
---
 gnu/packages/games.scm | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index f6819873df..84e09b50f4 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -3459,15 +3459,15 @@ This game is based on the GPL version of the famous game TuxRacer.")
 (define-public supertuxkart
   (package
     (name "supertuxkart")
-    (version "1.1")
+    (version "1.2")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "mirror://sourceforge/supertuxkart/SuperTuxKart/"
-                           version "/supertuxkart-" version "-src.tar.xz"))
+                           version "/SuperTuxKart-" version "-src.tar.xz"))
        (sha256
         (base32
-         "1s0ai07g3sswck9mr0142989mrgzzq1njc1qxk5als5b245jpc79"))
+         "0dvx56hmy6wdhl7m9dw8zc1n3jqfp05gnxl6zs1rbfdyzl5dybh5"))
        (modules '((guix build utils)))
        (snippet
         ;; Delete bundled library sources
@@ -3475,12 +3475,9 @@ This game is based on the GPL version of the famous game TuxRacer.")
            ;; Supertuxkart uses modified versions of the Irrlicht engine
            ;; and the bullet library.  The developers gave an explanation
            ;; here: http://forum.freegamedev.net/viewtopic.php?f=17&t=3906
-           ;; FIXME: try to unbundle angelscript and libraqm
+           ;; FIXME: try to unbundle angelscript, libmcpp and libraqm
            (for-each delete-file-recursively
-                     '("lib/zlib"
-                       "lib/libpng"
-                       "lib/jpeglib"
-                       "lib/glew"
+                     '("lib/glew"
                        "lib/wiiuse"
                        "lib/enet"))
            #t))))
@@ -3502,6 +3499,7 @@ This game is based on the GPL version of the famous game TuxRacer.")
              "-DCMAKE_C_FLAGS=-fpermissive")))
     (inputs
      `(("glew" ,glew)
+       ("sdl2" ,sdl2)
        ("zlib" ,zlib)
        ("openal" ,openal)
        ("libvorbis" ,libvorbis)
-- 
2.28.0





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

* bug#43471: [PATCH 0/1] gnu: supertuxkart: Update to 1.2
  2020-09-17 16:37 [bug#43471] [PATCH 0/1] gnu: supertuxkart: Update to 1.2 Raphaël Mélotte
  2020-09-17 16:58 ` [bug#43471] [PATCH 1/1] " Raphaël Mélotte
@ 2020-09-21  7:15 ` Efraim Flashner
  1 sibling, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2020-09-21  7:15 UTC (permalink / raw)
  To: Raphaël Mélotte; +Cc: 43471-done

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

On Thu, Sep 17, 2020 at 06:37:20PM +0200, Raphaël Mélotte wrote:
> Hello,
> 
> I bumped SuperTuxKart to the latest release, 1.2.
> 
> The URL has changed to use camel case, and I removed the deletion of
> some bundled libraries from the snippet, because they are no longer
> bundled in this version.
> 
> Some bundled libraries which are not part of Guix yet are still used.
> 
> Also to note: SuperTuxKart's source is now also available on Github,
> which according to the project could be faster:
> https://blog.supertuxkart.net/2020/08/supertuxkart-12-release.html
> 
> I kept the sourceforge link because according to the project the Github link
> "is a fallback".
> 
> Raphaël Mélotte (1):
>   gnu: supertuxkart: Update to 1.2
> 
>  gnu/packages/games.scm | 14 ++++++--------
>  1 file changed, 6 insertions(+), 8 deletions(-)
> 
> -- 
> 2.28.0

Looks good! My kids will be very happy. Patch pushed!

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

end of thread, other threads:[~2020-09-21  7:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-17 16:37 [bug#43471] [PATCH 0/1] gnu: supertuxkart: Update to 1.2 Raphaël Mélotte
2020-09-17 16:58 ` [bug#43471] [PATCH 1/1] " Raphaël Mélotte
2020-09-21  7:15 ` bug#43471: [PATCH 0/1] " Efraim Flashner

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