From unknown Sun Jun 22 22:48:00 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#39107] [PATCH] gnu: Add julius. Resent-From: Timotej Lazar Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 12 Jan 2020 21:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 39107 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 39107@debbugs.gnu.org Cc: Timotej Lazar X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.1578864285809 (code B ref -1); Sun, 12 Jan 2020 21:25:01 +0000 Received: (at submit) by debbugs.gnu.org; 12 Jan 2020 21:24:45 +0000 Received: from localhost ([127.0.0.1]:58278 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqkiy-0000Cy-Mp for submit@debbugs.gnu.org; Sun, 12 Jan 2020 16:24:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:34685) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqkiw-0000Cq-Iz for submit@debbugs.gnu.org; Sun, 12 Jan 2020 16:24:42 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:35316) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqkiv-00016d-02 for guix-patches@gnu.org; Sun, 12 Jan 2020 16:24:42 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,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 1iqkit-0007xb-Rd for guix-patches@gnu.org; Sun, 12 Jan 2020 16:24:40 -0500 Received: from araneo.si ([90.157.193.204]:45510) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iqkiY-0007cI-3Y for guix-patches@gnu.org; Sun, 12 Jan 2020 16:24:39 -0500 Received: from araneo.si (localhost.lan [127.0.0.1]) by araneo.si (OpenSMTPD) with ESMTP id 2decb2fb for ; Sun, 12 Jan 2020 21:24:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=araneo.si; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20180623; bh=YL0zO0yo3ylr/xnHn+Zyq5DSsMU=; b=mqPBfJazsVeYCe+/ 6oT0eGSLo+Yrs0ERNYdAIBeJIwIRr97BF6W2Yj8c4pc1Qo2SMqxwd/9t1SsmEWeR rKZ+QU5coTGds5Qd4L+InPjk5/KAbXzMfCUEtpt90bTCFMe7reIszwUN78TpJXkC N5xcN71JY4Fqt198lrw+ighkVMSrTFNsdlqWll60NCz75MyzSDXqHWJFXIQr+z6N VqJo3HHGsrKCKjp4MJ4zRkNz5L/P9UrZq0rPOXxwnacFG6oN77Rw/1LFOZfGjrpG R5UnFK5TRG/+QgjbindmtHPcsUu3+JTFvCqtynYXUocuK9DpwkTYM9V++kgf0J/m 9sKQnA== Received: by araneo.si (OpenSMTPD) with ESMTPSA id 7a997e4d (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sun, 12 Jan 2020 21:24:15 +0000 (UTC) From: Timotej Lazar Date: Sun, 12 Jan 2020 22:23:49 +0100 Message-Id: <20200112212349.30859-1-timotej.lazar@araneo.si> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 90.157.193.204 X-Spam-Score: -1.3 (-) 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.3 (--) * gnu/packages/games.scm (julius): New variable. --- gnu/packages/games.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 1f6064d082..2a940b82c4 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -739,6 +739,34 @@ automata. The following features are available: @end enumerate") (license license:gpl2+))) +(define-public julius + (package + (name "julius") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bvschaik/julius.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kgyzfjii4dhpy2h05977alwdmxyxb4jxznnrhlgb21m0ybncmvp")))) + (build-system cmake-build-system) + (inputs + `(("sdl2" ,sdl2) + ("sdl2-mixer" ,sdl2-mixer))) + (home-page "https://github.com/bvschaik/julius") + (synopsis "Free re-implementation of Caesar III game engine") + (description + "Free engine for Caesar III, a city-building real-time strategy game. +Julius includes some UI enhancements while preserving the logic (including +bugs) of the original game, so that saved games are compatible. This package +does not include game data.") + (license (list license:agpl3 + license:expat ; ext/dirent + license:zlib)))) ; ext/tinyfiledialogs + (define-public meandmyshadow (package (name "meandmyshadow") -- 2.24.1 From unknown Sun Jun 22 22:48:00 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: Timotej Lazar Subject: bug#39107: closed (Re: [bug#39107] [PATCH] gnu: Add julius.) Message-ID: References: <87k15wxpog.fsf@nicolasgoaziou.fr> <20200112212349.30859-1-timotej.lazar@araneo.si> X-Gnu-PR-Message: they-closed 39107 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 39107@debbugs.gnu.org Date: Sun, 12 Jan 2020 22:43:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1578868982-8980-1" This is a multi-part message in MIME format... ------------=_1578868982-8980-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #39107: [PATCH] gnu: Add julius. 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 39107@debbugs.gnu.org. --=20 39107: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D39107 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1578868982-8980-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 39107-done) by debbugs.gnu.org; 12 Jan 2020 22:42:13 +0000 Received: from localhost ([127.0.0.1]:58397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqlvw-0002Jp-Nb for submit@debbugs.gnu.org; Sun, 12 Jan 2020 17:42:12 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:44853) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqlvu-0002Je-Ja for 39107-done@debbugs.gnu.org; Sun, 12 Jan 2020 17:42:11 -0500 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 relay4-d.mail.gandi.net (Postfix) with ESMTPSA id A2084E0003; Sun, 12 Jan 2020 22:42:08 +0000 (UTC) From: Nicolas Goaziou To: Timotej Lazar Subject: Re: [bug#39107] [PATCH] gnu: Add julius. References: <20200112212349.30859-1-timotej.lazar@araneo.si> Date: Sun, 12 Jan 2020 23:42:07 +0100 In-Reply-To: <20200112212349.30859-1-timotej.lazar@araneo.si> (Timotej Lazar's message of "Sun, 12 Jan 2020 22:23:49 +0100") Message-ID: <87k15wxpog.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: 39107-done Cc: 39107-done@debbugs.gnu.org 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 (-) Hello, Timotej Lazar writes: > * gnu/packages/games.scm (julius): New variable. I applied your patch with the following changes: - I removed the word "Free" from the description and synopsis, since everything is free in Guix. - I updated your copyright line. Thank you! Regards, -- Nicolas Goaziou ------------=_1578868982-8980-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 12 Jan 2020 21:24:45 +0000 Received: from localhost ([127.0.0.1]:58278 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqkiy-0000Cy-Mp for submit@debbugs.gnu.org; Sun, 12 Jan 2020 16:24:44 -0500 Received: from lists.gnu.org ([209.51.188.17]:34685) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iqkiw-0000Cq-Iz for submit@debbugs.gnu.org; Sun, 12 Jan 2020 16:24:42 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:35316) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iqkiv-00016d-02 for guix-patches@gnu.org; Sun, 12 Jan 2020 16:24:42 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,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 1iqkit-0007xb-Rd for guix-patches@gnu.org; Sun, 12 Jan 2020 16:24:40 -0500 Received: from araneo.si ([90.157.193.204]:45510) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iqkiY-0007cI-3Y for guix-patches@gnu.org; Sun, 12 Jan 2020 16:24:39 -0500 Received: from araneo.si (localhost.lan [127.0.0.1]) by araneo.si (OpenSMTPD) with ESMTP id 2decb2fb for ; Sun, 12 Jan 2020 21:24:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=araneo.si; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=20180623; bh=YL0zO0yo3ylr/xnHn+Zyq5DSsMU=; b=mqPBfJazsVeYCe+/ 6oT0eGSLo+Yrs0ERNYdAIBeJIwIRr97BF6W2Yj8c4pc1Qo2SMqxwd/9t1SsmEWeR rKZ+QU5coTGds5Qd4L+InPjk5/KAbXzMfCUEtpt90bTCFMe7reIszwUN78TpJXkC N5xcN71JY4Fqt198lrw+ighkVMSrTFNsdlqWll60NCz75MyzSDXqHWJFXIQr+z6N VqJo3HHGsrKCKjp4MJ4zRkNz5L/P9UrZq0rPOXxwnacFG6oN77Rw/1LFOZfGjrpG R5UnFK5TRG/+QgjbindmtHPcsUu3+JTFvCqtynYXUocuK9DpwkTYM9V++kgf0J/m 9sKQnA== Received: by araneo.si (OpenSMTPD) with ESMTPSA id 7a997e4d (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Sun, 12 Jan 2020 21:24:15 +0000 (UTC) From: Timotej Lazar To: guix-patches@gnu.org Subject: [PATCH] gnu: Add julius. Date: Sun, 12 Jan 2020 22:23:49 +0100 Message-Id: <20200112212349.30859-1-timotej.lazar@araneo.si> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 90.157.193.204 X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Timotej Lazar 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.3 (--) * gnu/packages/games.scm (julius): New variable. --- gnu/packages/games.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 1f6064d082..2a940b82c4 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -739,6 +739,34 @@ automata. The following features are available: @end enumerate") (license license:gpl2+))) +(define-public julius + (package + (name "julius") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bvschaik/julius.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kgyzfjii4dhpy2h05977alwdmxyxb4jxznnrhlgb21m0ybncmvp")))) + (build-system cmake-build-system) + (inputs + `(("sdl2" ,sdl2) + ("sdl2-mixer" ,sdl2-mixer))) + (home-page "https://github.com/bvschaik/julius") + (synopsis "Free re-implementation of Caesar III game engine") + (description + "Free engine for Caesar III, a city-building real-time strategy game. +Julius includes some UI enhancements while preserving the logic (including +bugs) of the original game, so that saved games are compatible. This package +does not include game data.") + (license (list license:agpl3 + license:expat ; ext/dirent + license:zlib)))) ; ext/tinyfiledialogs + (define-public meandmyshadow (package (name "meandmyshadow") -- 2.24.1 ------------=_1578868982-8980-1--