guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: alex4: Remove non-free package.


From: guix-commits
Subject: branch master updated: gnu: alex4: Remove non-free package.
Date: Tue, 26 Sep 2023 18:37:21 -0400

This is an automated email from the git hooks/post-receive script.

nckx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 15fdeaeb2d gnu: alex4: Remove non-free package.
15fdeaeb2d is described below

commit 15fdeaeb2d4df755811db92cc7c3c7cb19155dec
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Sep 24 02:00:00 2023 +0200

    gnu: alex4: Remove non-free package.
    
    Its readme.txt goes out of its way to licence only ‘source code’ under
    the GPL2+, a reading supposedly confirmed by the author:
    
    https://libregamewiki.org/Talk:Alex_the_Allegator_4
    
    However, we don't need to rely on the authenticity of that claim: the
    game data is clearly not licenced, and is required to run the binary.
    Without it, the game segfaults.
    
    * gnu/packages/games.scm (alex4): Remove variable.
    
    Fixes <https://issues.guix.gnu.org/65881>.
---
 gnu/packages/games.scm | 42 ------------------------------------------
 1 file changed, 42 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 3976316300..5060c58cb7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -413,48 +413,6 @@ enemy, ally, weapon and mission types.  Features include 
simulated 4D texturing,
 mouse and joystick control, and original music.")
       (license license:gpl2))))
 
-(define-public alex4
-  (package
-    (name "alex4")
-    (version "1.2.1")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/carstene1ns/alex4";)
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "098wy72mh4lsvq3gm0rhamjssf9l1hp6hhkpzrv7klpb97cwwc3h"))))
-    (build-system gnu-build-system)
-    (arguments
-     `(#:tests? #f                      ; no check target
-       #:make-flags
-       (list "CC=gcc"
-             "CFLAGS=-D_FILE_OFFSET_BITS=64 -fcommon"
-             (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure)            ; no configure script
-         (add-after 'install 'install-data
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let ((share (string-append (assoc-ref outputs "out")
-                                         "/share/" ,name)))
-               (install-file "alex4.ini" share)
-               #t))))))
-    (inputs
-     `(("allegro" ,allegro-4)
-       ("dumb" ,dumb-allegro4)))
-    (home-page "https://allegator.sourceforge.net/";)
-    (synopsis "Retro platform game")
-    (description
-     "Guide Alex the Allegator through the jungle in order to save his
-girlfriend Lola from evil humans who want to make a pair of shoes out of her.
-Plenty of classic platforming in four nice colors guaranteed!
-
-The game includes a built-in editor so you can design and share your own 
maps.")
-    (license license:gpl2+)))
-
 (define-public anarch
   (let ((commit "2d78d0c69a3aac14dbd8f8aca62d0cbd9d27c860")
         (revision "1"))



reply via email to

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