From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57877) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fFQu2-0004R4-4v for guix-patches@gnu.org; Sun, 06 May 2018 17:09:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fFQty-0004ce-3V for guix-patches@gnu.org; Sun, 06 May 2018 17:09:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43815) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fFQtx-0004ca-Vt for guix-patches@gnu.org; Sun, 06 May 2018 17:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fFQtx-0006SQ-Mv for guix-patches@gnu.org; Sun, 06 May 2018 17:09:01 -0400 Subject: [bug#31375] [PATCH 2/2] gnu: wesnoth-server: Update to 1.14.0. Resent-Message-ID: From: Arun Isaac Date: Mon, 7 May 2018 02:38:19 +0530 Message-Id: <20180506210819.12509-2-arunisaac@systemreboot.net> In-Reply-To: <20180506210819.12509-1-arunisaac@systemreboot.net> References: <20180506210819.12509-1-arunisaac@systemreboot.net> 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: 31375@debbugs.gnu.org * gnu/packages/games.scm (wesnoth-server): Update to 1.14.0. [inputs]: Remove sdl-net. Add icu4c, openssl and sdl2. [arguments]: Remove delete-data phase. Since wesnoth 1.14.0, configure flag "-DENABLE_GAME=OFF" disables installation of game assets. --- gnu/packages/games.scm | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 27eb57573..db0614ee7 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1852,19 +1852,12 @@ next campaign.") (name "wesnoth-server") (inputs `(("boost" ,boost) - ("sdl-net" ,sdl-net))) + ("icu4c" ,icu4c) + ("openssl" ,openssl) + ("sdl2" ,sdl2))) (arguments - (append - (substitute-keyword-arguments (package-arguments wesnoth) - ((#:configure-flags configure-flags) - `(append ,configure-flags (list "-DENABLE_GAME=OFF")))) - `(#:phases - (modify-phases %standard-phases - ;; Delete game assets not required by the server. - (add-after 'install 'delete-data - (lambda* (#:key outputs #:allow-other-keys) - (delete-file-recursively (string-append (assoc-ref outputs "out") - "/share/wesnoth")))))))) + `(#:configure-flags '("-DENABLE_GAME=OFF") + ,@(package-arguments wesnoth))) (synopsis "Dedicated @emph{Battle for Wesnoth} server") (description "This package contains a dedicated server for @emph{The Battle for Wesnoth}."))) -- 2.15.1