From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37597) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iYUzH-0001nb-7G for guix-patches@gnu.org; Sat, 23 Nov 2019 07:58:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iYUzF-00023e-UY for guix-patches@gnu.org; Sat, 23 Nov 2019 07:58:07 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:47103) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iYUzF-00023Z-Ph for guix-patches@gnu.org; Sat, 23 Nov 2019 07:58:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iYUzF-0006KZ-My for guix-patches@gnu.org; Sat, 23 Nov 2019 07:58:05 -0500 Subject: [bug#38344] [PATCH] gnu: Add qgo. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:37514) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iYUyk-0001jR-Rt for guix-patches@gnu.org; Sat, 23 Nov 2019 07:57:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iYUyj-0001re-2D for guix-patches@gnu.org; Sat, 23 Nov 2019 07:57:34 -0500 Received: from mout02.posteo.de ([185.67.36.66]:53149) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iYUyi-0001r3-BB for guix-patches@gnu.org; Sat, 23 Nov 2019 07:57:33 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 30A112400FD for ; Sat, 23 Nov 2019 13:57:29 +0100 (CET) From: Guillaume Le Vaillant Date: Sat, 23 Nov 2019 13:56:54 +0100 Message-Id: <20191123125654.16899-1-glv@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 38344@debbugs.gnu.org Cc: Guillaume Le Vaillant * gnu/packages/games.scm (qgo): New variable. --- gnu/packages/games.scm | 71 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 3d825cbe61..e97af7609e 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -7809,3 +7809,74 @@ remake of that series or any other game.") the AlphaGo Zero paper. The current best network weights file for the e= ngine can be downloaded from @url{https://zero.sjeng.org/best-network}.") (license license:gpl3+))) + +(define-public qgo + (let ((commit "2a4212d473372bb531fdc5c919a20dd96819f9b0") + (revision "0")) + (package + (name "qgo") + (version (git-version "2.1.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pzorin/qgo.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0v03g0wp9vqzdn6ppxrhvabbz32ww83ipkk7178f8fqhm7ndvsbj"= )))) + (build-system gnu-build-system) + (native-inputs + `(("qttools" ,qttools))) + (inputs + `(("gnugo" ,gnugo) + ("qtbase" ,qtbase) + ("qtmultimedia" ,qtmultimedia))) + (arguments + `(#:modules ((guix build gnu-build-system) + (guix build qt-utils) + (guix build utils)) + #:imported-modules (,@%gnu-build-system-modules + (guix build qt-utils)) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs outputs #:allow-other-keys) + (substitute* "src/src.pro" + (("=3D /usr/") + (string-append "=3D " (assoc-ref outputs "out") "/")) + (("\\$\\$\\[QT_INSTALL_BINS\\]/lrelease") + (string-append (assoc-ref inputs "qttools") "/bin/lrel= ease"))) + (substitute* "src/defines.h" + (("/usr/games/") + (string-append (assoc-ref inputs "gnugo") "/bin/")) + (("/usr/share/") + (string-append (assoc-ref outputs "out") "/share/"))) + (substitute* "src/main.cpp" + (("QCoreApplication::applicationDirPath\\(\\)\\+\"") + (string-append "\"" (assoc-ref outputs "out") "/share/= qgo"))) + #t)) + (replace 'configure + (lambda _ + (invoke "qmake" "src"))) + (add-after 'install 'install-translations + (lambda* (#:key outputs #:allow-other-keys) + (let ((dest (string-append (assoc-ref outputs "out") + "/share/qgo/translations"))) + (for-each (lambda (file) + (install-file file dest)) + (find-files "../source/src/translations/" + "qgo_.*\\.qm"))) + #t)) + (add-after 'install-translations 'wrap-program + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (wrap-qt-program out "qgo")) + #t))))) + (synopsis "Qt GUI to play the game of Go") + (description + "This is a Go client. It supports playing online at IGS-compatib= le +servers and locally against GTP-compliant engines like @code{gnugo}. +It also has rudimentary support for editing SGF files.") + (home-page "https://github.com/pzorin/qgo") + (license license:gpl2+)))) --=20 2.24.0