From unknown Thu Jun 19 14:13:24 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#41881 <41881@debbugs.gnu.org> To: bug#41881 <41881@debbugs.gnu.org> Subject: Status: [PATCH] Add BurgerSpace Reply-To: bug#41881 <41881@debbugs.gnu.org> Date: Thu, 19 Jun 2025 21:13:24 +0000 retitle 41881 [PATCH] Add BurgerSpace reassign 41881 guix-patches submitter 41881 Nicolas Goaziou severity 41881 normal tag 41881 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 15 16:56:49 2020 Received: (at submit) by debbugs.gnu.org; 15 Jun 2020 20:56:49 +0000 Received: from localhost ([127.0.0.1]:47592 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkw9x-0001Ik-HV for submit@debbugs.gnu.org; Mon, 15 Jun 2020 16:56:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:43166) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jkw9u-0001Ic-Vw for submit@debbugs.gnu.org; Mon, 15 Jun 2020 16:56:47 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37082) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jkw9u-00041i-IB for guix-patches@gnu.org; Mon, 15 Jun 2020 16:56:46 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:43079) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jkw9r-0003AU-R4 for guix-patches@gnu.org; Mon, 15 Jun 2020 16:56:46 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id CE627C0002 for ; Mon, 15 Jun 2020 20:56:39 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add BurgerSpace Date: Mon, 15 Jun 2020 22:56:38 +0200 Message-ID: <87imfscak9.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=217.70.183.198; envelope-from=mail@nicolasgoaziou.fr; helo=relay6-d.mail.gandi.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/06/15 16:56:40 X-ACL-Warn: Detected OS = Linux 3.11 and newer X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.6 (--) --=-=-= Content-Type: text/plain Hello, The following add flatzebra game engine and BurgerSpace. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-gnu-Add-flatzebra.patch >From ca2ce13ceef85dff43ebb90f8a53b71042afd49d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 15 Jun 2020 21:55:33 +0200 Subject: [PATCH 1/2] gnu: Add flatzebra. * gnu/packages/game-development.scm (flatzebra): New variable. --- gnu/packages/game-development.scm | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index ddd171c5d2..58dbb98f78 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -1999,6 +1999,43 @@ hardware from multiple vendors without requiring that applications have specific knowledge of the hardware they are targeting.") (license license:bsd-3))) +(define-public flatzebra + (package + (name "flatzebra") + (version "0.1.7") + (source + (origin + (method url-fetch) + (uri (string-append "http://perso.b2b2c.ca/~sarrazip/dev/" + "flatzebra-" version ".tar.gz")) + (sha256 + (base32 "1x2dy41c8vrq62bn03b82fpmk7x4rzd7qqiwvq0mgcl5rmasc2c8")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-sdl-config + (lambda* (#:key inputs #:allow-other-keys) + ;; XXX: sdl-config in sdl-union is a link to sdl-config from + ;; plain sdl package. As a consequence, the prefix is wrong. + ;; Force correct one with "--prefix" argument. + (let ((sdl-union (assoc-ref inputs "sdl"))) + (setenv "SDL_CONFIG" + (string-append sdl-union + "/bin/sdl-config --prefix=" + sdl-union))) + #t))))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("sdl" ,(sdl-union (list sdl sdl-image sdl-mixer))))) + (home-page "http://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html") + (synopsis "Generic game engine for 2D double-buffering animation") + (description + "Flatzebra is a simple, generic C++ game engine library supporting 2D +double-buffering.") + (license license:gpl2+))) + (define-public fna (package (name "fna") -- 2.26.2 --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0002-gnu-Add-burgerspace.patch >From bf559b567493c26093a681d81d4feb3a942b3add Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 15 Jun 2020 21:56:36 +0200 Subject: [PATCH 2/2] gnu: Add burgerspace. * gnu/packages/games.scm (burgerspace): New variable. --- gnu/packages/games.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 10ac8cb550..fc19c25c85 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -10560,6 +10560,33 @@ soldiers, jeeps and tanks. The gameplay is simple but it is not that easy to get high scores.") (license license:gpl2+))) +(define-public burgerspace + (package + (name "burgerspace") + (version "1.9.3") + (source + (origin + (method url-fetch) + (uri (string-append "http://perso.b2b2c.ca/~sarrazip/dev/" + "burgerspace-" version ".tar.gz")) + (sha256 + (base32 "1005a04rbn4lzjrpfg0m394k2mfaji63fm2qhdqdsxila8a6kjbv")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("flatzebra" ,flatzebra))) + (home-page "http://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html") + (synopsis "Avoid evil foodstuffs and make burgers") + (description + "This is a clone of the classic game BurgerTime. In it, you play +the part of a chef who must create burgers by stepping repeatedly on +the ingredients until they fall into place. And to make things more +complicated, you also must avoid evil animate food items while +performing this task, with nothing but your trusty pepper shaker to +protect you.") + (license license:gpl2+))) + (define-public 7kaa (package (name "7kaa") -- 2.26.2 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 28 19:04:48 2020 Received: (at 41881-done) by debbugs.gnu.org; 28 Jun 2020 23:04:48 +0000 Received: from localhost ([127.0.0.1]:47205 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jpgLv-0005Qy-U6 for submit@debbugs.gnu.org; Sun, 28 Jun 2020 19:04:48 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:48135) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jpgLq-0005Qa-HY for 41881-done@debbugs.gnu.org; Sun, 28 Jun 2020 19:04:45 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay9-d.mail.gandi.net (Postfix) with ESMTPSA id 0E39BFF802 for <41881-done@debbugs.gnu.org>; Sun, 28 Jun 2020 23:04:35 +0000 (UTC) From: Nicolas Goaziou To: 41881-done@debbugs.gnu.org Subject: Re: [bug#41881] [PATCH] Add BurgerSpace References: <87imfscak9.fsf@nicolasgoaziou.fr> Date: Mon, 29 Jun 2020 01:04:33 +0200 In-Reply-To: <87imfscak9.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Mon, 15 Jun 2020 22:56:38 +0200") Message-ID: <875zbax05a.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 41881-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Nicolas Goaziou writes: > The following add flatzebra game engine and BurgerSpace. Applied. Closing. From unknown Thu Jun 19 14:13:24 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 27 Jul 2020 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator