import/cran: Do not attempt to generate definitions for failed imports.

* guix/scripts/import/cran.scm (guix-import-cran): Remove failed imports from
list of packages to define.
This commit is contained in:
Ricardo Wurmus 2020-12-04 12:28:53 +01:00
parent a689c85af4
commit 2bbe6b300e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2015, 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2017, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
;;;
;;; This file is part of GNU Guix.
@ -98,8 +98,9 @@ (define (parse-options)
(if (assoc-ref opts 'recursive)
;; Recursive import
(map package->definition
(cran-recursive-import package-name
#:repo (or (assoc-ref opts 'repo) 'cran)))
(filter identity
(cran-recursive-import package-name
#:repo (or (assoc-ref opts 'repo) 'cran))))
;; Single import
(let ((sexp (cran->guix-package package-name
#:repo (or (assoc-ref opts 'repo) 'cran))))