From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Noteworthy =?utf-8?Q?=E2=80=98guix_package=E2=80=99?= and =?utf-8?B?4oCYZ3VpeCBwdWxs4oCZ?= bug fixes Date: Fri, 06 Feb 2015 18:09:20 +0100 Message-ID: <87h9uzezlr.fsf@gnu.org> 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]:53374) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJmPG-0003rE-MI for guix-devel@gnu.org; Fri, 06 Feb 2015 12:09:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJmPD-0003eE-AM for guix-devel@gnu.org; Fri, 06 Feb 2015 12:09:26 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:50408) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJmPC-0003eA-TK for guix-devel@gnu.org; Fri, 06 Feb 2015 12:09:23 -0500 Received: from pluto.bordeaux.inria.fr ([193.50.110.57]:59934 helo=pluto) by fencepost.gnu.org with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1YJmPC-0007ti-EB for guix-devel@gnu.org; Fri, 06 Feb 2015 12:09:22 -0500 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: guix-devel Let me draw your attention to these two noteworthy bug fixes since everyone is likely to have been hit by those two bugs: commit c9323a4c69d48bc9af3825674e43a3febbb42091 Author: Ludovic Court=C3=A8s Date: Fri Feb 6 17:52:07 2015 +0100 guix package: Make custom profiles actual indirect roots. =20=20=20=20 Before that, any profile generation built when '-p' is used would effectively become a permanent GC root because the symlink in /var/guix/gcroots/auto would point directly to /gnu/store/...-profile. =20=20=20=20 * guix/scripts/package.scm (maybe-register-gc-root): Rename to... (register-gc-root): ... this. Remove conditional, and replace call to 'canonicalize-path' with (string-append (getcwd) "/" ...). (guix-package): Call 'register-gc-root' only if PROFILE is different from %CURRENT-PROFILE. * tests/guix-package.sh: Add test case. commit 3df5acf332fd7b5c21c09961eaa5353c1bd08c60 Author: Ludovic Court=C3=A8s Date: Fri Feb 6 17:39:10 2015 +0100 pull: Always install the ~/.config/guix/latest symlink. =20=20=20=20 Before that, if two users on the same machine ran 'guix pull', the second one would have the "Guix already up to date" message and their ~/.config/guix/latest link would be left unchanged---effectively preventing them from updating. =20=20=20=20 * guix/scripts/pull.scm (build-and-install): Install the 'latest' symlink regardless of whether TO-DO? is true or false. Ludo=E2=80=99.