From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45669) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gVTKc-0000a0-ND for guix-patches@gnu.org; Fri, 07 Dec 2018 22:31:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gVTKY-0003PQ-Kh for guix-patches@gnu.org; Fri, 07 Dec 2018 22:31:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33213) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gVTKY-0003PJ-Gv for guix-patches@gnu.org; Fri, 07 Dec 2018 22:31:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gVTKY-0002fW-67 for guix-patches@gnu.org; Fri, 07 Dec 2018 22:31:02 -0500 Subject: [bug#33395] [PATCH 1/2] gnu: Add liblcf. Resent-Message-ID: From: iyzsong@member.fsf.org (=?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?=) References: <20181115111223.1982-1-iyzsong@member.fsf.org> <871s76bxa4.fsf@gnu.org> Date: Sat, 08 Dec 2018 11:30:18 +0800 In-Reply-To: <871s76bxa4.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Tue, 27 Nov 2018 12:00:19 +0100") Message-ID: <87zhtgelv9.fsf@member.fsf.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 33395@debbugs.gnu.org ludo@gnu.org (Ludovic Court=C3=A8s) writes: > Hello =E5=AE=8B=E6=96=87=E6=AD=A6! > > =E5=AE=8B=E6=96=87=E6=AD=A6 skribis: > >> * gnu/packages/easyrpg.scm: New file. >> * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. > > Should it go to game-development.scm? Not sure, but I'd prefer it go into the same file with 'easyrpg-player', which IMO dosen't belong into 'games.scm'... > >> + (synopsis "Library to handle RPG Maker 2000 and 2003 game data") >> + (description >> + "@code{liblcf} is a library to handle RPG Maker 2000 and 2003 game= data. >> +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))) > > Could these things be unbundled? If not, could you leave a comment > possibly with a TODO? Ok, how about: ;; It includes a copy of Boost Preprocessor Cat and Stringize (boost-1.= 0): ;; src/boost/preprocessor/config.hpp ;; src/boost/preprocessor/cat.hpp ;; src/boost/preprocessor/stringize.hpp ;; and a copy of inih (bsd-3): ;; src/ini.h ;; src/ini.cpp ;; src/initreader.cpp ;; TODO: Unbundle them.