Re: [PATCH 2/7] import cran: Move guix-name to top-level.

2016-05-30 Thread Ludovic Courtès
Ricardo Wurmus skribis: > * guix/import/cran.scm (guix-name): Move to top-level. [...] > +(define (guix-name name) > + "Return a Guix package name for a given R package name." > + (string-append "r-" (string-downcase > + (regexp-substitute/global #f "(_|\\.)" name > +

[PATCH 2/7] import cran: Move guix-name to top-level.

2016-05-23 Thread Ricardo Wurmus
* guix/import/cran.scm (guix-name): Move to top-level. --- guix/import/cran.scm | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/guix/import/cran.scm b/guix/import/cran.scm index 8b368af..0be5346 100644 --- a/guix/import/cran.scm +++ b/guix/import/cran.scm @@ -147,1