GNU bug report logs - #40048
Add barrage game

Previous Next

Package: guix-patches;

Reported by: Alberto EFG <albertoefg <at> posteo.mx>

Date: Fri, 13 Mar 2020 04:59:02 UTC

Severity: normal

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

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 40048 in the body.
You can then email your comments to 40048 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#40048; Package guix-patches. (Fri, 13 Mar 2020 04:59:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Alberto EFG <albertoefg <at> posteo.mx>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 13 Mar 2020 04:59:02 GMT) Full text and rfc822 format available.

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

From: Alberto EFG <albertoefg <at> posteo.mx>
To: guix-patches <at> gnu.org
Subject: Add barrage game 
Date: Thu, 12 Mar 2020 22:58:30 -0600
[Message part 1 (text/plain, inline)]
Hello.

My second patch, I tried to avoid the same mistakes of the last one.
Everything seems to work.
guix size is around 800 MB

Please let me know of any mistakes I made :)

[0001-gnu-Add-barrage.patch (text/x-patch, inline)]
From 74e954b5ef5caee3634be2067f32541a0f05c294 Mon Sep 17 00:00:00 2001
From: Alberto Eleuterio Flores Guerrero <barbanegra+guix <at> posteo.mx>
Date: Wed, 11 Mar 2020 21:50:14 -0600
Subject: [PATCH] gnu: Add barrage.

* gnu/packages/games.scm (barrage): New variable.
---
 gnu/packages/games.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 322e309591..7581a429f8 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -46,6 +46,7 @@
 ;;; Copyright © 2019, 2020 Timotej Lazar <timotej.lazar <at> araneo.si>
 ;;; Copyright © 2019 Josh Holland <josh <at> inv.alid.pw>
 ;;; Copyright © 2017, 2019 Hartmut Goebel <h.goebel <at> crazy-compilers.com>
+;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero <barbanegra+guix <at> posteo.mx>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -10157,3 +10158,34 @@ best human chess grandmasters.  It can be used with UCI-compatible GUIs like
 ChessX.")
     (home-page "https://stockfishchess.org/")
     (license license:gpl3+)))
+
+(define-public barrage
+  (package
+    (name "barrage")
+    (version "1.0.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/lgames/barrage/"
+                           "barrage-" version ".tar.gz"))
+       (sha256
+        (base32 "0139wxyrir10cbkvkjn548xgmp84wax8mfwk80yxbxlcdamrg257"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("sdl" ,sdl)
+       ("sdl-mixer" ,sdl-mixer)
+       ("hicolor-icon-theme" ,hicolor-icon-theme)))
+    (arguments
+     `(#:configure-flags
+       (list
+        (string-append "CFLAGS="
+                       "-I" (assoc-ref %build-inputs "sdl-mixer")
+                       "/include/SDL"))))
+    (home-page "http://lgames.sourceforge.net/Barrage/")
+    (synopsis "Violent point-and-click shooting game with nice effects")
+    (description "Barrage is a rather destructive action game that
+ puts you on a shooting range with the objective to hit as many dummy
+ targets as possible within 3 minutes.  You control a gun that may either
+ fire small or large grenades at soldiers, jeeps and tanks.
+ Targets are fast pace.")
+    (license license:gpl2+)))
-- 
2.25.1


Information forwarded to guix-patches <at> gnu.org:
bug#40048; Package guix-patches. (Fri, 13 Mar 2020 20:47:02 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Alberto EFG <albertoefg <at> posteo.mx>
Cc: 40048 <at> debbugs.gnu.org
Subject: Re: [bug#40048] Add barrage game
Date: Fri, 13 Mar 2020 21:46:28 +0100
Hello,

Alberto EFG <albertoefg <at> posteo.mx> writes:

> My second patch, I tried to avoid the same mistakes of the last one.
> Everything seems to work.
> guix size is around 800 MB

I applied the patch with the changes below:

> +    (inputs
> +     `(("sdl" ,sdl)
> +       ("sdl-mixer" ,sdl-mixer)
> +       ("hicolor-icon-theme" ,hicolor-icon-theme)))

I re-ordered inputs alphabetically.

> +    (synopsis "Violent point-and-click shooting game with nice effects")
> +    (description "Barrage is a rather destructive action game that
> + puts you on a shooting range with the objective to hit as many dummy
> + targets as possible within 3 minutes.  You control a gun that may either
> + fire small or large grenades at soldiers, jeeps and tanks.
> + Targets are fast pace.")

The last sentence seemed to be cut off. I changed the ending according
to upstream REAMDE.

Thank you!

Regards,

-- 
Nicolas Goaziou




Information forwarded to guix-patches <at> gnu.org:
bug#40048; Package guix-patches. (Mon, 13 Apr 2020 16:36:02 GMT) Full text and rfc822 format available.

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

From: Vincent Legoll <vincent.legoll <at> gmail.com>
To: 40048 <at> debbugs.gnu.org
Cc: Alberto EFG <albertoefg <at> posteo.mx>,
 Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
Subject: Re: [bug#40048] Add barrage game
Date: Mon, 13 Apr 2020 18:35:05 +0200
Hello,

I think this issue should be closed

WDYT ?




Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Mon, 13 Apr 2020 16:53:01 GMT) Full text and rfc822 format available.

Notification sent to Alberto EFG <albertoefg <at> posteo.mx>:
bug acknowledged by developer. (Mon, 13 Apr 2020 16:53:01 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Vincent Legoll <vincent.legoll <at> gmail.com>
Cc: Alberto EFG <albertoefg <at> posteo.mx>, 40048-done <at> debbugs.gnu.org
Subject: Re: [bug#40048] Add barrage game
Date: Mon, 13 Apr 2020 18:52:16 +0200
Hello,

Vincent Legoll <vincent.legoll <at> gmail.com> writes:

> I think this issue should be closed
>
> WDYT ?

You are right. I forgot to do it. Thanks for the heads up.

Regards,

-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 12 May 2020 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 343 days ago.

Previous Next


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