import cran: Remove more invalid characters from package names.
* guix/import/cran.scm (guix-name): Replace period and underscore with dash; always prepend package names with "r-".
This commit is contained in:
parent
576eda6d02
commit
2e5f32ce1b
@ -152,9 +152,11 @@ empty list when the FIELD cannot be found."
|
||||
"Return the `package' s-expression for an R package published on REPOSITORY
|
||||
from the alist META, which was derived from the R package's DESCRIPTION file."
|
||||
(define (guix-name name)
|
||||
(if (string-prefix? "r-" name)
|
||||
(string-downcase name)
|
||||
(string-append "r-" (string-downcase name))))
|
||||
(string-append "r-" (string-map (match-lambda
|
||||
(#\_ #\-)
|
||||
(#\. #\-)
|
||||
(chr (char-downcase chr)))
|
||||
name)))
|
||||
|
||||
(let* ((base-url (case repository
|
||||
((cran) %cran-url)
|
||||
|
Loading…
Reference in New Issue
Block a user