From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:37345) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h41BB-0005QS-La for guix-patches@gnu.org; Wed, 13 Mar 2019 06:32:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h41B9-0001JY-9F for guix-patches@gnu.org; Wed, 13 Mar 2019 06:32:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:55766) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h41B4-0000w7-FX for guix-patches@gnu.org; Wed, 13 Mar 2019 06:32:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h41B4-0001zL-B1 for guix-patches@gnu.org; Wed, 13 Mar 2019 06:32:02 -0400 Subject: [bug#34634] [PATCH 1/1] gnu: tryton: Add tryton 5.0.6. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190223140939.54371269@riseup.net> <87r2bdrras.fsf@gnu.org> <20190312165842.1dc6b8cf@riseup.net> Date: Wed, 13 Mar 2019 11:31:19 +0100 In-Reply-To: <20190312165842.1dc6b8cf@riseup.net> (Jovany Leandro G. C.'s message of "Tue, 12 Mar 2019 16:58:42 -0500") Message-ID: <875zsn9ibs.fsf@gnu.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: "Jovany Leandro G.C" Cc: 34634@debbugs.gnu.org Hello Jovany, "Jovany Leandro G.C" skribis: > El Mon, 11 Mar 2019 23:15:39 +0100 > Ludovic Court=C3=A8s escribi=C3=B3: [...] >> "Jovany Leandro G.C" skribis: >>=20 >> > From 693d00d1df68ada3bb43cbaecdd2823976e87bd4 Mon Sep 17 00:00:00 >> > 2001 From: "Jovany Leandro G.C" >> > Date: Sat, 23 Feb 2019 14:08:01 -0500 >> > Subject: [PATCH 1/1] gnu: tryton: Add tryton 5.0.6. >> > >> > * gnu/packages/tryton.scm (tryton-5): New variable.=20=20 >>=20 >> Do you think we should keep both version 4 and version 5? Is it >> generally useful today to have these two versions available? >>=20 > yeah it's very useful, tryton 4 and 5 both have updates, now 5 will be > LTS OK, sounds good. >> > +(define-public tryton-5 >> > + (package >> > + (name "tryton") >> > + (version "5.0.6")=20=20 >>=20 >> Should it inherit from =E2=80=98tryton=E2=80=99? > what it's the best path for this? > a guide please You would write something like: (define-public tryton-5 (package (inherit tryton) (version "5.0.6") ;; =E2=80=A6 )) and you only need to specify fields that differ from those of =E2=80=98tryt= on=E2=80=99. See for example =E2=80=98guile-2.0.13=E2=80=99 in (gnu packages guile). >> > + (license license:gpl3)))=20=20 >>=20 >> Version 3 only, or version 3 =E2=80=9Cor any later version=E2=80=9D? >>=20 > http://hg.tryton.org/tryton/file/5.0/LICENSE > yeah GPL-3+ Right, and specifically there are no source file headers that say =E2=80=9Cversion 3 only=E2=80=9D, so =E2=80=98gpl3+=E2=80=99 indeed! Thanks, Ludo=E2=80=99. PS: Please keep 34634@debbugs.gnu.org Cc=E2=80=99d.