me
/
guix
Archived
1
0
Fork 0

import/cran: Add more invalid package names to ignore.

* guix/import/cran.scm (invalid-packages): Add more names.
master
Ricardo Wurmus 2021-01-20 17:04:38 +01:00
parent 81710c867c
commit e8a968f89d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2016, 2017, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015, 2016, 2017, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net> ;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
@ -341,7 +341,11 @@ empty list when the FIELD cannot be found."
;; The field for system dependencies is often abused to specify non-package ;; The field for system dependencies is often abused to specify non-package
;; dependencies (such as c++11). This list is used to ignore them. ;; dependencies (such as c++11). This list is used to ignore them.
(define invalid-packages (define invalid-packages
(list "c++11")) (list "c++11"
"c++14"
"linux"
"getopt::long"
"xquartz"))
(define cran-guix-name (cut guix-name "r-" <>)) (define cran-guix-name (cut guix-name "r-" <>))