From unknown Sat Sep 20 12:00:35 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#35391] [PATCH] Add jumpnbump Resent-From: Nicolas Goaziou Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 23 Apr 2019 12:52:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 35391 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 35391@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.155602389324005 (code B ref -1); Tue, 23 Apr 2019 12:52:02 +0000 Received: (at submit) by debbugs.gnu.org; 23 Apr 2019 12:51:33 +0000 Received: from localhost ([127.0.0.1]:52686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hIutY-0006F5-2x for submit@debbugs.gnu.org; Tue, 23 Apr 2019 08:51:33 -0400 Received: from eggs.gnu.org ([209.51.188.92]:39431) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hIutV-0006Et-MS for submit@debbugs.gnu.org; Tue, 23 Apr 2019 08:51:30 -0400 Received: from lists.gnu.org ([209.51.188.17]:43987) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hIutQ-0000Xs-CQ for submit@debbugs.gnu.org; Tue, 23 Apr 2019 08:51:24 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIutO-0000UP-Sh for guix-patches@gnu.org; Tue, 23 Apr 2019 08:51:24 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIue9-0007Xb-FJ for guix-patches@gnu.org; Tue, 23 Apr 2019 08:35:38 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:50673) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hIue9-0007Uz-2w for guix-patches@gnu.org; Tue, 23 Apr 2019 08:35:37 -0400 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 5A26910000F for ; Tue, 23 Apr 2019 12:35:30 +0000 (UTC) From: Nicolas Goaziou Date: Tue, 23 Apr 2019 14:35:30 +0200 Message-ID: <87y340hpbh.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.231 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: -1.6 (-) 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 patches add sdl2-net and jumpnbump. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-sdl2-net.patch Content-Description: Add sdl2-net >From b563954f9dcab8a802e06f4de5dfdef51686dc2e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 23 Apr 2019 14:24:12 +0200 Subject: [PATCH 1/2] gnu: Add sdl2-net. * gnu/packages/sdl.scm (sdl2-net): New variable. --- gnu/packages/sdl.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index fffb06204f..53bfd09987 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -398,6 +398,22 @@ directory.") (propagated-inputs (propagated-inputs-with-sdl2 sdl-mixer)))) +(define-public sdl2-net + (package (inherit sdl-net) + (name "sdl2-net") + (version "2.0.1") + (source + (origin + (method url-fetch) + (uri + (string-append "http://www.libsdl.org/projects/SDL_net/release/" + "SDL2_net-" version ".tar.gz")) + (sha256 + (base32 + "08cxc1bicmyk89kiks7izw1rlx5ng5n6xpy8fy0zxni3b9z8mkhm")))) + (propagated-inputs + (propagated-inputs-with-sdl2 sdl-net)))) + (define-public sdl2-ttf (package (inherit sdl-ttf) (name "sdl2-ttf") -- 2.21.0 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0002-gnu-Add-jumpnbump.patch Content-Description: Add jumpnbump >From cdcb767c38ea75459736525917e552590a9359de Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 23 Apr 2019 14:25:52 +0200 Subject: [PATCH 2/2] gnu: Add jumpnbump. * gnu/packages/games.scm (jumpnbump): New variable. --- gnu/packages/games.scm | 44 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index da917e2870..f260cbf471 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6998,3 +6998,47 @@ pursue their favorite interesting flight simulation idea, and last but certainly not least as a fun, realistic, and challenging desktop flight simulator.") (license license:gpl2+))) + +(define-public jumpnbump + (package + (name "jumpnbump") + (version "1.60") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/LibreGames/jumpnbump.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0gwi58ck4magvdim8wmxdqnsi0fqdpvqia9kcc7q73nqf34jjz3v")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags + (list "CC=gcc" + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:tests? #f ;no test + #:phases + (modify-phases %standard-phases + (delete 'configure) ;no configure script + (add-after 'unpack 'fix-sdl-path + ;; XXX: For some reason, `sdl2-config' reports stand-alone SDL + ;; directory, not SDL-union provided as an input to the package. + ;; We force the latter with "--prefix=" option. + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "Makefile" + (("sdl2-config" command) + (string-append command " --prefix=" (assoc-ref inputs "sdl")))) + #t))))) + (inputs + `(("bzip2" ,bzip2) + ("sdl" ,(sdl-union (list sdl2 sdl2-mixer sdl2-net))) + ("zlib" ,zlib))) + (native-inputs + `(("gettext" ,gettext-minimal))) ;for msgfmt + (home-page "https://gitlab.com/LibreGames/jumpnbump") + (synopsis "Cute multiplayer platform game with bunnies") + (description "You, as a bunny, have to jump on your opponents to make them +explode. It's a true multiplayer game; you can't play this alone. You can +play with up to four players simultaneously. It has network support.") + (license license:gpl2+))) -- 2.21.0 --=-=-=-- From unknown Sat Sep 20 12:00:35 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Nicolas Goaziou Subject: bug#35391: closed ([PATCH] Add jumpnbump) Message-ID: References: <87r29lm15r.fsf@nicolasgoaziou.fr> <87y340hpbh.fsf@nicolasgoaziou.fr> X-Gnu-PR-Message: they-closed 35391 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 35391@debbugs.gnu.org Date: Mon, 29 Apr 2019 12:45:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1556541903-5769-1" This is a multi-part message in MIME format... ------------=_1556541903-5769-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #35391: [PATCH] Add jumpnbump which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 35391@debbugs.gnu.org. --=20 35391: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D35391 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1556541903-5769-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 35391-done) by debbugs.gnu.org; 29 Apr 2019 12:44:22 +0000 Received: from localhost ([127.0.0.1]:38606 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hL5du-0001TX-Dv for submit@debbugs.gnu.org; Mon, 29 Apr 2019 08:44:22 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:59025) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hL5ds-0001TN-69 for 35391-done@debbugs.gnu.org; Mon, 29 Apr 2019 08:44:21 -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 414C4FF812 for <35391-done@debbugs.gnu.org>; Mon, 29 Apr 2019 12:44:17 +0000 (UTC) From: Nicolas Goaziou To: 35391-done@debbugs.gnu.org Subject: [PATCH] Add jumpnbump Date: Mon, 29 Apr 2019 14:44:16 +0200 Message-ID: <87r29lm15r.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 35391-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 (-) Pushed as e8a0696d5636c05e34cc4f60e1a0f3c2ca554f13. Regards, -- Nicolas Goaziou ------------=_1556541903-5769-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 23 Apr 2019 12:51:33 +0000 Received: from localhost ([127.0.0.1]:52686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hIutY-0006F5-2x for submit@debbugs.gnu.org; Tue, 23 Apr 2019 08:51:33 -0400 Received: from eggs.gnu.org ([209.51.188.92]:39431) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hIutV-0006Et-MS for submit@debbugs.gnu.org; Tue, 23 Apr 2019 08:51:30 -0400 Received: from lists.gnu.org ([209.51.188.17]:43987) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hIutQ-0000Xs-CQ for submit@debbugs.gnu.org; Tue, 23 Apr 2019 08:51:24 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIutO-0000UP-Sh for guix-patches@gnu.org; Tue, 23 Apr 2019 08:51:24 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIue9-0007Xb-FJ for guix-patches@gnu.org; Tue, 23 Apr 2019 08:35:38 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:50673) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hIue9-0007Uz-2w for guix-patches@gnu.org; Tue, 23 Apr 2019 08:35:37 -0400 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay11.mail.gandi.net (Postfix) with ESMTPSA id 5A26910000F for ; Tue, 23 Apr 2019 12:35:30 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add jumpnbump Date: Tue, 23 Apr 2019 14:35:30 +0200 Message-ID: <87y340hpbh.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.231 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x 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 patches add sdl2-net and jumpnbump. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-sdl2-net.patch Content-Description: Add sdl2-net >From b563954f9dcab8a802e06f4de5dfdef51686dc2e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 23 Apr 2019 14:24:12 +0200 Subject: [PATCH 1/2] gnu: Add sdl2-net. * gnu/packages/sdl.scm (sdl2-net): New variable. --- gnu/packages/sdl.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index fffb06204f..53bfd09987 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -398,6 +398,22 @@ directory.") (propagated-inputs (propagated-inputs-with-sdl2 sdl-mixer)))) +(define-public sdl2-net + (package (inherit sdl-net) + (name "sdl2-net") + (version "2.0.1") + (source + (origin + (method url-fetch) + (uri + (string-append "http://www.libsdl.org/projects/SDL_net/release/" + "SDL2_net-" version ".tar.gz")) + (sha256 + (base32 + "08cxc1bicmyk89kiks7izw1rlx5ng5n6xpy8fy0zxni3b9z8mkhm")))) + (propagated-inputs + (propagated-inputs-with-sdl2 sdl-net)))) + (define-public sdl2-ttf (package (inherit sdl-ttf) (name "sdl2-ttf") -- 2.21.0 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0002-gnu-Add-jumpnbump.patch Content-Description: Add jumpnbump >From cdcb767c38ea75459736525917e552590a9359de Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 23 Apr 2019 14:25:52 +0200 Subject: [PATCH 2/2] gnu: Add jumpnbump. * gnu/packages/games.scm (jumpnbump): New variable. --- gnu/packages/games.scm | 44 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index da917e2870..f260cbf471 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6998,3 +6998,47 @@ pursue their favorite interesting flight simulation idea, and last but certainly not least as a fun, realistic, and challenging desktop flight simulator.") (license license:gpl2+))) + +(define-public jumpnbump + (package + (name "jumpnbump") + (version "1.60") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/LibreGames/jumpnbump.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0gwi58ck4magvdim8wmxdqnsi0fqdpvqia9kcc7q73nqf34jjz3v")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags + (list "CC=gcc" + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:tests? #f ;no test + #:phases + (modify-phases %standard-phases + (delete 'configure) ;no configure script + (add-after 'unpack 'fix-sdl-path + ;; XXX: For some reason, `sdl2-config' reports stand-alone SDL + ;; directory, not SDL-union provided as an input to the package. + ;; We force the latter with "--prefix=" option. + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "Makefile" + (("sdl2-config" command) + (string-append command " --prefix=" (assoc-ref inputs "sdl")))) + #t))))) + (inputs + `(("bzip2" ,bzip2) + ("sdl" ,(sdl-union (list sdl2 sdl2-mixer sdl2-net))) + ("zlib" ,zlib))) + (native-inputs + `(("gettext" ,gettext-minimal))) ;for msgfmt + (home-page "https://gitlab.com/LibreGames/jumpnbump") + (synopsis "Cute multiplayer platform game with bunnies") + (description "You, as a bunny, have to jump on your opponents to make them +explode. It's a true multiplayer game; you can't play this alone. You can +play with up to four players simultaneously. It has network support.") + (license license:gpl2+))) -- 2.21.0 --=-=-=-- ------------=_1556541903-5769-1--