From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: New CLI syntax for package version Date: Sat, 09 Jan 2016 22:26:22 +0100 Message-ID: <874mem8mwx.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]:59998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aI11p-0005Oh-PU for guix-devel@gnu.org; Sat, 09 Jan 2016 16:26:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aI11k-0003mC-Qx for guix-devel@gnu.org; Sat, 09 Jan 2016 16:26:29 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:44924) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aI11k-0003m8-Nk for guix-devel@gnu.org; Sat, 09 Jan 2016 16:26:24 -0500 Received: from reverse-83.fdn.fr ([80.67.176.83]:40386 helo=pluto) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1aI11k-00045p-5r for guix-devel@gnu.org; Sat, 09 Jan 2016 16:26:24 -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@gnu.org In , we came to the conclusion that we need a new syntax to denote a specific package version on the command line. The current syntax is described in the manual (info "(guix) Invoking guix package"). Basically, =E2=80=98guile-1.8=E2=80=99 refers to version 1= .8.x of Guile; however, this syntax has proved to be ambiguous for packages whose name contains digits. For the new syntax, the proposals so far are: 1. slash, guile:1.8/doc xterm-256-color:320 emacs:24.5/out 2. underscore, emacs_24.5:out 3. at, guile@1.8 guile@1.8:doc What do people think? Ludo=E2=80=99.