From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#26175: guix download fails if filename contains "@" Date: Mon, 20 Mar 2017 23:22:40 +0100 Message-ID: <87wpbjsi4v.fsf@gnu.org> References: <4e979de0-b9d9-d489-792c-4a63c91aaba1@crazy-compilers.com> 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]:54954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cq5hf-0002Qg-4B for bug-guix@gnu.org; Mon, 20 Mar 2017 18:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cq5he-0001b1-6c for bug-guix@gnu.org; Mon, 20 Mar 2017 18:23:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38666) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cq5he-0001ar-33 for bug-guix@gnu.org; Mon, 20 Mar 2017 18:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cq5hd-0003x2-QS for bug-guix@gnu.org; Mon, 20 Mar 2017 18:23:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <4e979de0-b9d9-d489-792c-4a63c91aaba1@crazy-compilers.com> (Hartmut Goebel's message of "Sun, 19 Mar 2017 19:06:22 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Hartmut Goebel Cc: 26175@debbugs.gnu.org Hello, Hartmut Goebel skribis: > guix download fails if filename contains "@":invalid character `@' in name > > > $ guix download > mirror://kde/stable/applications/16.12.3/src/kde-l10n/kde-l10n-ca@valenci= a-16.12.3.tar.xz > [...] > Starting download of /tmp/guix-file.oVF3qZ > From > http://mirror.karneval.cz/pub/kde/stable/applications/16.12.3/src/kde-l10= n/kde-l10n-ca@valencia-16.12.3.tar.xz... > ...cia-16.12.3.tar.xz 2.0MiB 1.4MiB/s 00:01 > [####################] 100.0% > guix download: error: build failed: invalid character `@' in name > `kde-l10n-ca@valencia-16.12.3.tar.xz' To address this we=E2=80=99d need an extra command-line option in =E2=80=98= guix download=E2=80=99 to specify the name to use in the store (similar to the =E2=80=98file-name=E2=80=99 field in .) So one would type: guix download --name=3Dfoo.tar.xz mirror://=E2=80=A6/kde-l10n-ca@valencia= -16.12.3.tar.xz In the meantime, you can work around it by doing something like: guix download -o foo.tar.xz mirror://=E2=80=A6/kde-l10n-ca@valencia-16.12= .3.tar.xz guix hash foo.tar.xz Thanks, Ludo=E2=80=99.