From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:32948) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHCGu-0002zm-IM for guix-patches@gnu.org; Wed, 25 Mar 2020 16:05:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jHCGt-0000b5-3n for guix-patches@gnu.org; Wed, 25 Mar 2020 16:05:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51812) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jHCGs-0000ar-OJ for guix-patches@gnu.org; Wed, 25 Mar 2020 16:05:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jHCGs-0006eP-Hr for guix-patches@gnu.org; Wed, 25 Mar 2020 16:05:02 -0400 Subject: [bug#40221] Submission of GUI Package Description for 7kaa v2 Resent-Message-ID: References: <9b3a381f-3177-b8b2-5924-f8c05137c67b@riseup.net> <87zhc4h6vy.fsf@nicolasgoaziou.fr> <87d090h11t.fsf@nicolasgoaziou.fr> From: Naga Malleswari Message-ID: <82a06722-d927-b277-bff0-69c80b009089@riseup.net> Date: Thu, 26 Mar 2020 01:33:54 +0530 MIME-Version: 1.0 In-Reply-To: <87d090h11t.fsf@nicolasgoaziou.fr> Content-Type: multipart/mixed; boundary="------------77287A939E979F2487BE3156" Content-Language: en-US List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Nicolas Goaziou Cc: Danny Milosavljevic , =?UTF-8?Q?G=C3=A1bor?= Boskovits , 40221@debbugs.gnu.org This is a multi-part message in MIME format. --------------77287A939E979F2487BE3156 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hi I have made all the changes suggested by you in the trailing mail as well. I had to change the hash. Please review the patch and suggest any changes. On 25/03/20 9:36 pm, Nicolas Goaziou wrote: > Completing myself, > >>> + (inputs >>> + `(("sdl2" ,sdl2) >>> + ("enet" ,enet) >>> + ("openal" ,openal) >>> + ("gettext" ,gettext-minimal) > gettext is a native input, you should move it in the appropriate > section. > -- Regards NagaMalli --------------77287A939E979F2487BE3156 Content-Type: text/x-patch; charset=UTF-8; name="0001-gnu-Add-7kaa.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-gnu-Add-7kaa.patch" >From ca08e2306f39655c957b9ce5081c6ec01427d95d Mon Sep 17 00:00:00 2001 From: Naga Malleswari Date: Thu, 26 Mar 2020 01:30:43 +0530 Subject: [PATCH] gnu: Add 7kaa. * gnu/packages/games.scm (7kaa): New variable. --- gnu/packages/games.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 2b03a36c43..35b362a76f 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -47,6 +47,7 @@ ;;; Copyright © 2019 Josh Holland ;;; Copyright © 2017, 2019 Hartmut Goebel ;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero +;;; Copyright © 2020 Naga Malleswari ;;; ;;; This file is part of GNU Guix. ;;; @@ -10319,3 +10320,37 @@ range with the objective to hit as many dummy targets as possible within soldiers, jeeps and tanks. The gameplay is simple but it is not that easy to get high scores.") (license license:gpl2+))) + +(define-public 7kaa + (package + (name "7kaa") + (version "2.15.3") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/the3dfxdude/7kaa/releases/download/v" + version "/7kaa-" version ".tar.xz")) + (sha256 + (base32 "0blj47mcsfw1sn3465j6iham8m6ki07iggnq4q8nnaqnryx710jc")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("gettext" ,gettext-minimal) + ("pkg-config" ,pkg-config))) + (inputs + `(("curl" ,curl) + ("enet" ,enet) + ("openal" ,openal) + ("sdl2" ,sdl2))) + (home-page "https://7kfans.com/") + (synopsis "Seven Kingdoms Ancient Adversaries: real-time strategy game") + (description + "Seven Kingdoms, designed by Trevor Chan, brings a blend of +Real-Time Strategy with the addition of trade, diplomacy, and espionage. +The game enables players to compete against up to six other kingdoms +allowing players to conquer opponents by defeating them in war (with +troops or machines), capturing their buildings with spies, or offering +opponents money for their kingdom. In 2009, Enlight Software released the +game under the GPL license.") + (license license:gpl2+))) -- 2.25.1 --------------77287A939E979F2487BE3156--