[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63522] [PATCH 1/2] scripts: import: elpa: Warn when version is spec
From: |
Simon Tournier |
Subject: |
[bug#63522] [PATCH 1/2] scripts: import: elpa: Warn when version is specified. |
Date: |
Mon, 15 May 2023 19:45:44 +0200 |
* guix/scripts/import/elpa.scm (guix-import-elpa): Warn when version is
specified.
---
guix/scripts/import/elpa.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/guix/scripts/import/elpa.scm b/guix/scripts/import/elpa.scm
index 052b0cc0e7..a71478d3c8 100644
--- a/guix/scripts/import/elpa.scm
+++ b/guix/scripts/import/elpa.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
+;;; Copyright © 2023 Simon Tournier <zimon.toutoune@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -91,7 +92,11 @@ (define (guix-import-elpa . args)
(_ #f))
(reverse opts))))
(match args
- ((package-name)
+ ((spec)
+ (define-values (package-name version)
+ (package-name->name+version spec))
+ (when version
+ (warning (G_ "this importer does not consider the version~%")))
(if (assoc-ref opts 'recursive)
(with-error-handling
(map (match-lambda
--
2.38.1