From unknown Fri Aug 15 19:20:15 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#33396] [PATCH 2/2] gnu: Add easyrpg-player. Resent-From: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 15 Nov 2018 11:13:03 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 33396 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 33396@debbugs.gnu.org Cc: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.15422803829017 (code B ref -1); Thu, 15 Nov 2018 11:13:03 +0000 Received: (at submit) by debbugs.gnu.org; 15 Nov 2018 11:13:02 +0000 Received: from localhost ([127.0.0.1]:53040 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gNFa1-0002LE-Mr for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:13:02 -0500 Received: from eggs.gnu.org ([208.118.235.92]:57916) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gNFZy-0002Kp-4e for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:12:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gNFZr-00058M-M3 for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:12:52 -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.0 required=5.0 tests=BAYES_40,UNPARSEABLE_RELAY autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:34694) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gNFZr-00058A-IP for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:12:51 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39262) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gNFZp-0001f6-B5 for guix-patches@gnu.org; Thu, 15 Nov 2018 06:12:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gNFZk-00053l-NE for guix-patches@gnu.org; Thu, 15 Nov 2018 06:12:49 -0500 Received: from rezeros.cc ([2001:19f0:7001:2f3e:5400:ff:fe84:e55d]:45596) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gNFZi-0004zI-IL for guix-patches@gnu.org; Thu, 15 Nov 2018 06:12:44 -0500 Received: from localhost (117.176.216.5 [117.176.216.5]) by rezeros.cc (OpenSMTPD) with ESMTPSA id 45fd9465 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Thu, 15 Nov 2018 11:12:30 +0000 (UTC) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 78c631d6; Thu, 15 Nov 2018 11:12:24 +0000 (UTC) From: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Thu, 15 Nov 2018 19:12:23 +0800 Message-Id: <20181115111223.1982-2-iyzsong@member.fsf.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181115111223.1982-1-iyzsong@member.fsf.org> References: <20181115111223.1982-1-iyzsong@member.fsf.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) 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: -6.0 (------) * gnu/packages/easyrpg.scm (easyrpg-player): New variable. --- gnu/packages/easyrpg.scm | 55 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/gnu/packages/easyrpg.scm b/gnu/packages/easyrpg.scm index 573f3e992..dfb81d289 100644 --- a/gnu/packages/easyrpg.scm +++ b/gnu/packages/easyrpg.scm @@ -21,8 +21,18 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (gnu packages audio) + #:use-module (gnu packages compression) + #:use-module (gnu packages fontutils) + #:use-module (gnu packages gtk) #:use-module (gnu packages icu4c) + #:use-module (gnu packages image) + #:use-module (gnu packages mp3) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pulseaudio) + #:use-module (gnu packages sdl) + #:use-module (gnu packages xdisorg) + #:use-module (gnu packages xiph) #:use-module (gnu packages xml)) (define-public liblcf @@ -52,3 +62,48 @@ It can read and write LCF and XML files.") ;; It bundles Boost Preprocessor Cat and Stringize (boost-1.0) and a copy ;; of inih (bsd-3). (license license:expat))) + +(define-public easyrpg-player + (package + (name "easyrpg-player") + (version "0.5.4") + (source (origin + (method url-fetch) + (uri (string-append + "https://easyrpg.org/downloads/player/" version + "/easyrpg-player-" version ".tar.gz")) + (sha256 + (base32 + "0w0idr61slg5828j1q31c1kh1h0ryp8psc006y06jph5pp3qgm48")))) + (build-system gnu-build-system) + (arguments + '(#:configure-flags + (list (string-append "--with-bash-completion-dir=" + %output "/etc/bash_completion.d/")))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("freetype" ,freetype) + ("harfbuzz" ,harfbuzz) + ("liblcf" ,liblcf) + ("libpng" ,libpng) + ("libsndfile" ,libsndfile) + ("libvorbis" ,libvorbis) + ("libxmp" ,libxmp) + ("mpg123" ,mpg123) + ("opusfile" ,opusfile) + ("pixman" ,pixman) + ("sdl2-mixer" ,sdl2-mixer) + ("sdl2" ,sdl2) + ("speexdsp" ,speexdsp) + ;; ("wildmidi" ,wildmidi) ; TODO: package it + ("zlib" ,zlib))) + (home-page "https://easyrpg.org/") + (synopsis "Play RPG Maker 2000 and 2003 games") + (description + "EasyRPG Player is a game interpreter to play RPG Maker 2000, 2003 and +EasyRPG games. It uses the LCF parser library (liblcf) to read RPG Maker game +data.") + ;; It bundles FMMidi YM2608 FM synthesizer emulator (bsd-3) and PicoJSON + ;; JSON parser/serializer (bsd-2). + (license license:gpl3+))) -- 2.19.0 From unknown Fri Aug 15 19:20:15 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: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: bug#33396: closed (Re: [bug#33396] [PATCH 2/2] gnu: Add easyrpg-player.) Message-ID: References: <877egjwkgb.fsf@member.fsf.org> <20181115111223.1982-2-iyzsong@member.fsf.org> X-Gnu-PR-Message: they-closed 33396 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 33396@debbugs.gnu.org Date: Sun, 09 Dec 2018 01:36:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1544319363-12752-1" This is a multi-part message in MIME format... ------------=_1544319363-12752-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #33396: [PATCH 2/2] gnu: Add easyrpg-player. 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 33396@debbugs.gnu.org. --=20 33396: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D33396 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1544319363-12752-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 33396-done) by debbugs.gnu.org; 9 Dec 2018 01:35:59 +0000 Received: from localhost ([127.0.0.1]:39071 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gVo0k-0003J9-TO for submit@debbugs.gnu.org; Sat, 08 Dec 2018 20:35:59 -0500 Received: from rezeros.cc ([45.76.207.221]:60306) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gVo0j-0003Iz-4F for 33396-done@debbugs.gnu.org; Sat, 08 Dec 2018 20:35:57 -0500 Received: from localhost (223.87.242.226 [223.87.242.226]) by rezeros.cc (OpenSMTPD) with ESMTPSA id d83a394b (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <33396-done@debbugs.gnu.org>; Sun, 9 Dec 2018 01:35:55 +0000 (UTC) Received: from gift (localhost.localdomain [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id e271243a for <33396-done@debbugs.gnu.org>; Sun, 9 Dec 2018 01:35:48 +0000 (UTC) From: iyzsong@member.fsf.org (=?utf-8?B?5a6L5paH5q2m?=) To: 33396-done@debbugs.gnu.org Subject: Re: [bug#33396] [PATCH 2/2] gnu: Add easyrpg-player. References: <20181115111223.1982-1-iyzsong@member.fsf.org> <20181115111223.1982-2-iyzsong@member.fsf.org> Date: Sun, 09 Dec 2018 09:35:48 +0800 In-Reply-To: <20181115111223.1982-2-iyzsong@member.fsf.org> (=?utf-8?B?IuWui+aWh+atpiIncw==?= message of "Thu, 15 Nov 2018 19:12:23 +0800") Message-ID: <877egjwkgb.fsf@member.fsf.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.1 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: 宋文武 writes: > * gnu/packages/easyrpg.scm (easyrpg-player): New variable. > --- > gnu/packages/easyrpg.scm | 55 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 55 insertions(+) Content analysis details: (1.1 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.0 SPF_SOFTFAIL SPF: sender does not match SPF record (softfail) 0.1 FROM_EXCESS_BASE64 From: base64 encoded unnecessarily X-Debbugs-Envelope-To: 33396-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: 0.1 (/) =E5=AE=8B=E6=96=87=E6=AD=A6 writes: > * gnu/packages/easyrpg.scm (easyrpg-player): New variable. > --- > gnu/packages/easyrpg.scm | 55 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 55 insertions(+) Pushed. ------------=_1544319363-12752-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 15 Nov 2018 11:13:02 +0000 Received: from localhost ([127.0.0.1]:53040 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gNFa1-0002LE-Mr for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:13:02 -0500 Received: from eggs.gnu.org ([208.118.235.92]:57916) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gNFZy-0002Kp-4e for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:12:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gNFZr-00058M-M3 for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:12:52 -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.0 required=5.0 tests=BAYES_40,UNPARSEABLE_RELAY autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:34694) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gNFZr-00058A-IP for submit@debbugs.gnu.org; Thu, 15 Nov 2018 06:12:51 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39262) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gNFZp-0001f6-B5 for guix-patches@gnu.org; Thu, 15 Nov 2018 06:12:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gNFZk-00053l-NE for guix-patches@gnu.org; Thu, 15 Nov 2018 06:12:49 -0500 Received: from rezeros.cc ([2001:19f0:7001:2f3e:5400:ff:fe84:e55d]:45596) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gNFZi-0004zI-IL for guix-patches@gnu.org; Thu, 15 Nov 2018 06:12:44 -0500 Received: from localhost (117.176.216.5 [117.176.216.5]) by rezeros.cc (OpenSMTPD) with ESMTPSA id 45fd9465 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Thu, 15 Nov 2018 11:12:30 +0000 (UTC) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 78c631d6; Thu, 15 Nov 2018 11:12:24 +0000 (UTC) From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= To: guix-patches@gnu.org Subject: [PATCH 2/2] gnu: Add easyrpg-player. Date: Thu, 15 Nov 2018 19:12:23 +0800 Message-Id: <20181115111223.1982-2-iyzsong@member.fsf.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181115111223.1982-1-iyzsong@member.fsf.org> References: <20181115111223.1982-1-iyzsong@member.fsf.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= 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: -6.0 (------) * gnu/packages/easyrpg.scm (easyrpg-player): New variable. --- gnu/packages/easyrpg.scm | 55 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/gnu/packages/easyrpg.scm b/gnu/packages/easyrpg.scm index 573f3e992..dfb81d289 100644 --- a/gnu/packages/easyrpg.scm +++ b/gnu/packages/easyrpg.scm @@ -21,8 +21,18 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (gnu packages audio) + #:use-module (gnu packages compression) + #:use-module (gnu packages fontutils) + #:use-module (gnu packages gtk) #:use-module (gnu packages icu4c) + #:use-module (gnu packages image) + #:use-module (gnu packages mp3) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pulseaudio) + #:use-module (gnu packages sdl) + #:use-module (gnu packages xdisorg) + #:use-module (gnu packages xiph) #:use-module (gnu packages xml)) (define-public liblcf @@ -52,3 +62,48 @@ It can read and write LCF and XML files.") ;; It bundles Boost Preprocessor Cat and Stringize (boost-1.0) and a copy ;; of inih (bsd-3). (license license:expat))) + +(define-public easyrpg-player + (package + (name "easyrpg-player") + (version "0.5.4") + (source (origin + (method url-fetch) + (uri (string-append + "https://easyrpg.org/downloads/player/" version + "/easyrpg-player-" version ".tar.gz")) + (sha256 + (base32 + "0w0idr61slg5828j1q31c1kh1h0ryp8psc006y06jph5pp3qgm48")))) + (build-system gnu-build-system) + (arguments + '(#:configure-flags + (list (string-append "--with-bash-completion-dir=" + %output "/etc/bash_completion.d/")))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("freetype" ,freetype) + ("harfbuzz" ,harfbuzz) + ("liblcf" ,liblcf) + ("libpng" ,libpng) + ("libsndfile" ,libsndfile) + ("libvorbis" ,libvorbis) + ("libxmp" ,libxmp) + ("mpg123" ,mpg123) + ("opusfile" ,opusfile) + ("pixman" ,pixman) + ("sdl2-mixer" ,sdl2-mixer) + ("sdl2" ,sdl2) + ("speexdsp" ,speexdsp) + ;; ("wildmidi" ,wildmidi) ; TODO: package it + ("zlib" ,zlib))) + (home-page "https://easyrpg.org/") + (synopsis "Play RPG Maker 2000 and 2003 games") + (description + "EasyRPG Player is a game interpreter to play RPG Maker 2000, 2003 and +EasyRPG games. It uses the LCF parser library (liblcf) to read RPG Maker game +data.") + ;; It bundles FMMidi YM2608 FM synthesizer emulator (bsd-3) and PicoJSON + ;; JSON parser/serializer (bsd-2). + (license license:gpl3+))) -- 2.19.0 ------------=_1544319363-12752-1--