[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63522] [PATCH 0/2] Fix return code of "guix import elpa"
From: |
Simon Tournier |
Subject: |
[bug#63522] [PATCH 0/2] Fix return code of "guix import elpa" |
Date: |
Mon, 15 May 2023 19:44:04 +0200 |
Hi,
This fixes issue #58308 [1]:
--8<---------------cut here---------------start------------->8---
$ ./pre-inst-env guix import elpa syslog
guix import: error: failed to download meta-data for package 'syslog'
$ echo $?
1
$ ./pre-inst-env guix import elpa syslog -r
guix import: error: failed to download meta-data for package 'syslog'
$ echo $?
1
--8<---------------cut here---------------end--------------->8---
In addition, since Elpa importer does not support the specification of the
version, the first patch warns about that:
--8<---------------cut here---------------start------------->8---
$ ./pre-inst-env guix import elpa -a melpa magit@12
guix import: warning: this importer does not consider the version
(package
((name "emacs-magit")
(version "20230510.2139")
[...]
--8<---------------cut here---------------end--------------->8---
1: https://issues.guix.gnu.org/issue/58308
Cheers,
simon
Simon Tournier (2):
scripts: import: elpa: Warn when version is specified.
scripts: import: elpa: Return consistent error code.
guix/scripts/import/elpa.scm | 34 ++++++++++++++++++++--------------
1 file changed, 20 insertions(+), 14 deletions(-)
base-commit: 6e38ec447f98383e0722ac300734f8d7c8c5c7b0
--
2.38.1
- [bug#63522] [PATCH 0/2] Fix return code of "guix import elpa",
Simon Tournier <=