mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
import/cran: Add more invalid package names to ignore.
* guix/import/cran.scm (invalid-packages): Add more names.
This commit is contained in:
parent
81710c867c
commit
e8a968f89d
1 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; 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 © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
||||
|
@ -341,7 +341,11 @@ (define default-r-packages
|
|||
;; The field for system dependencies is often abused to specify non-package
|
||||
;; dependencies (such as c++11). This list is used to ignore them.
|
||||
(define invalid-packages
|
||||
(list "c++11"))
|
||||
(list "c++11"
|
||||
"c++14"
|
||||
"linux"
|
||||
"getopt::long"
|
||||
"xquartz"))
|
||||
|
||||
(define cran-guix-name (cut guix-name "r-" <>))
|
||||
|
||||
|
|
Loading…
Reference in a new issue