From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46304) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d0amB-0001pc-Iu for guix-patches@gnu.org; Tue, 18 Apr 2017 17:35:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d0am6-0002gG-JL for guix-patches@gnu.org; Tue, 18 Apr 2017 17:35:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57080) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d0am6-0002fw-Gu for guix-patches@gnu.org; Tue, 18 Apr 2017 17:35:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d0am6-0003QU-80 for guix-patches@gnu.org; Tue, 18 Apr 2017 17:35:02 -0400 Subject: bug#26238: core-updates: Fix time zone bug in `date` 8.26 Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170324162234.GA32596@jasmine> <87d1d4p1nr.fsf@gnu.org> <20170326200114.GA9140@jasmine> <87o9wnnmy8.fsf@gnu.org> <87vaq2oh6r.fsf@gnu.org> <87y3uyk95r.fsf@fastmail.com> <87a87eup5p.fsf@gnu.org> <87r30pv9yn.fsf@fastmail.com> Date: Tue, 18 Apr 2017 23:34:14 +0200 In-Reply-To: <87r30pv9yn.fsf@fastmail.com> (Marius Bakke's message of "Tue, 18 Apr 2017 20:37:04 +0200") Message-ID: <87h91ls8mh.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: Marius Bakke Cc: 26238@debbugs.gnu.org Marius Bakke skribis: > Here is a WIP patch that adds a graft for coreutils 8.27. I stole Leos > code for the (gnu packages commencement) part. It builds with > `./pre-inst-env guix build coreutils`, but my after reconfiguring my > system on it, `date --version` still shows 8.26. > > Any idea what's wrong? Bah! The system uses =E2=80=98coreutils-final=E2=80=99 due to this stanza = in (gnu system): ;; The packages below are also in %FINAL-INPUTS, so take them from ;; there to avoid duplication. (map canonical-package (list guile-2.0 bash coreutils findutils grep sed diffutils patch gawk tar gzip bzip2 xz lzip)) Not sure how to handle it. We could explicitly write =E2=80=98coreutils-8.= 27=E2=80=99 above, which would solve the problem. It would also make the graft much less useful, except for people explicitly doing: guix package -i coreutils So we might just as well remove the graft. Thoughts? Ludo=E2=80=99.