From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] icedtea6: split outputs Date: Wed, 04 Mar 2015 13:18:52 +0100 Message-ID: <87pp8phs5v.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YT8GW-0001lF-Jl for guix-devel@gnu.org; Wed, 04 Mar 2015 07:19:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YT8GT-0000vY-82 for guix-devel@gnu.org; Wed, 04 Mar 2015 07:19:04 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:57392) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YT8GT-0000vU-55 for guix-devel@gnu.org; Wed, 04 Mar 2015 07:19:01 -0500 In-Reply-To: (Ricardo Wurmus's message of "Wed, 4 Mar 2015 11:17:50 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ricardo Wurmus Cc: Guix-devel Ricardo Wurmus skribis: > The first attached patch splits the outputs of the icedtea6 package into > "doc", "jdk", and "out", containing the documentation, the contents of > the "j2sdk-image" directory, and the contents of the "j2re-image" > directory, respectively. > > The other two patches update the packages for Ant and R, such that they > depend on the "jdk" output. Merge these into one patch, since doing it separately would mean that in the interim R and Ant would be left broken. > From 47b47b539d4d467b70861a42e0d9abba20f1362a Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Wed, 4 Mar 2015 10:25:54 +0100 > Subject: [PATCH 1/3] gnu: icedtea6: split outputs. > > * gnu/packages/java.scm (icedtea6)[outputs]: Use separate outputs for > documentation ("doc"), JDK ("jdk"), and JRE ("out"). [...] > + (outputs '("out" ; Java Runtime Environment > + "jdk" ; Java Development Kit > + "doc")) ; all documentation Could you add the size of each output in parentheses, to give the reader an idea? > From 7e9189c0dd36704e9dddb71c31dac97fad23df73 Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Wed, 4 Mar 2015 11:08:16 +0100 > Subject: [PATCH 2/3] gnu: ant: use "jdk" output of icedtea6. > > * gnu/packages/java.scm (ant)[native-inputs]: Reference "jdk" output of > icedtea6 package. OK for both merged as one! Thanks, Ludo=E2=80=99.