2015-07-24 16:49:57 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-01-11 09:27:21 +01:00
|
|
|
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
Add (guix memoization).
* guix/combinators.scm (memoize): Remove.
* guix/memoization.scm: New file.
* Makefile.am (MODULES): Add it.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
guix/build-system/gnu.scm, guix/build-system/python.scm,
guix/derivations.scm, guix/gnu-maintenance.scm,
guix/import/cran.scm, guix/import/elpa.scm,
guix/modules.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/store.scm, guix/utils.scm: Adjust imports accordingly.
2017-01-28 16:33:57 +01:00
|
|
|
|
;;; Copyright © 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
2017-05-04 11:52:33 +02:00
|
|
|
|
;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
2015-07-24 16:49:57 +02:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix import cran)
|
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (ice-9 regex)
|
2017-03-27 12:53:13 +02:00
|
|
|
|
#:use-module ((ice-9 rdelim) #:select (read-string read-line))
|
2015-07-24 16:49:57 +02:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2018-12-20 09:37:58 +01:00
|
|
|
|
#:use-module (srfi srfi-2)
|
2015-10-21 14:36:14 +02:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2016-12-17 15:24:45 +01:00
|
|
|
|
#:use-module (srfi srfi-34)
|
2016-05-17 15:17:54 +02:00
|
|
|
|
#:use-module (ice-9 receive)
|
2016-12-17 15:24:45 +01:00
|
|
|
|
#:use-module (web uri)
|
Add (guix memoization).
* guix/combinators.scm (memoize): Remove.
* guix/memoization.scm: New file.
* Makefile.am (MODULES): Add it.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
guix/build-system/gnu.scm, guix/build-system/python.scm,
guix/derivations.scm, guix/gnu-maintenance.scm,
guix/import/cran.scm, guix/import/elpa.scm,
guix/modules.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/store.scm, guix/utils.scm: Adjust imports accordingly.
2017-01-28 16:33:57 +01:00
|
|
|
|
#:use-module (guix memoization)
|
2015-07-24 16:49:57 +02:00
|
|
|
|
#:use-module (guix http-client)
|
Switch to Guile-Gcrypt.
This removes (guix hash) and (guix pk-crypto), which now live as part of
Guile-Gcrypt (version 0.1.0.)
* guix/gcrypt.scm, guix/hash.scm, guix/pk-crypto.scm,
tests/hash.scm, tests/pk-crypto.scm: Remove.
* configure.ac: Test for Guile-Gcrypt. Remove LIBGCRYPT and
LIBGCRYPT_LIBDIR assignments.
* m4/guix.m4 (GUIX_ASSERT_LIBGCRYPT_USABLE): Remove.
* README: Add Guile-Gcrypt to the dependencies; move libgcrypt as
"required unless --disable-daemon".
* doc/guix.texi (Requirements): Likewise.
* gnu/packages/bash.scm, guix/derivations.scm, guix/docker.scm,
guix/git.scm, guix/http-client.scm, guix/import/cpan.scm,
guix/import/cran.scm, guix/import/crate.scm, guix/import/elpa.scm,
guix/import/gnu.scm, guix/import/hackage.scm,
guix/import/texlive.scm, guix/import/utils.scm, guix/nar.scm,
guix/pki.scm, guix/scripts/archive.scm,
guix/scripts/authenticate.scm, guix/scripts/download.scm,
guix/scripts/hash.scm, guix/scripts/pack.scm,
guix/scripts/publish.scm, guix/scripts/refresh.scm,
guix/scripts/substitute.scm, guix/store.scm,
guix/store/deduplication.scm, guix/tests.scm, tests/base32.scm,
tests/builders.scm, tests/challenge.scm, tests/cpan.scm,
tests/crate.scm, tests/derivations.scm, tests/gem.scm,
tests/nar.scm, tests/opam.scm, tests/pki.scm,
tests/publish.scm, tests/pypi.scm, tests/store-deduplication.scm,
tests/store.scm, tests/substitute.scm: Adjust imports.
* gnu/system/vm.scm: Likewise.
(guile-sqlite3&co): Rename to...
(gcrypt-sqlite3&co): ... this. Add GUILE-GCRYPT.
(expression->derivation-in-linux-vm)[config]: Remove.
(iso9660-image)[config]: Remove.
(qemu-image)[config]: Remove.
(system-docker-image)[config]: Remove.
* guix/scripts/pack.scm: Adjust imports.
(guile-sqlite3&co): Rename to...
(gcrypt-sqlite3&co): ... this. Add GUILE-GCRYPT.
(self-contained-tarball)[build]: Call 'make-config.scm' without
#:libgcrypt argument.
(squashfs-image)[libgcrypt]: Remove.
[build]: Call 'make-config.scm' without #:libgcrypt.
(docker-image)[config, json]: Remove.
[build]: Add GUILE-GCRYPT to the extensions Remove (guix config) from
the imported modules.
* guix/self.scm (specification->package): Remove "libgcrypt", add
"guile-gcrypt".
(compiled-guix): Remove #:libgcrypt.
[guile-gcrypt]: New variable.
[dependencies]: Add it.
[*core-modules*]: Remove #:libgcrypt from 'make-config.scm' call.
Add #:extensions.
[*config*]: Remove #:libgcrypt from 'make-config.scm' call.
(%dependency-variables): Remove %libgcrypt.
(make-config.scm): Remove #:libgcrypt.
* build-aux/build-self.scm (guile-gcrypt): New variable.
(make-config.scm): Remove #:libgcrypt.
(build-program)[fake-gcrypt-hash]: New variable.
Add (gcrypt hash) to the imported modules. Adjust load path
assignments.
* gnu/packages/package-management.scm (guix)[propagated-inputs]: Add
GUILE-GCRYPT.
[arguments]: In 'wrap-program' phase, add GUILE-GCRYPT to the search
path.
2018-08-31 17:07:07 +02:00
|
|
|
|
#:use-module (gcrypt hash)
|
2015-07-24 16:49:57 +02:00
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix base32)
|
|
|
|
|
#:use-module ((guix download) #:select (download-to-store))
|
|
|
|
|
#:use-module (guix import utils)
|
2017-03-27 12:53:13 +02:00
|
|
|
|
#:use-module ((guix build utils) #:select (find-files))
|
|
|
|
|
#:use-module (guix utils)
|
2015-12-16 14:45:28 +01:00
|
|
|
|
#:use-module ((guix build-system r) #:select (cran-uri bioconductor-uri))
|
2015-10-21 14:36:14 +02:00
|
|
|
|
#:use-module (guix upstream)
|
|
|
|
|
#:use-module (guix packages)
|
2016-05-17 16:38:17 +02:00
|
|
|
|
#:use-module (gnu packages)
|
2015-10-21 14:36:14 +02:00
|
|
|
|
#:export (cran->guix-package
|
2015-12-16 14:45:28 +01:00
|
|
|
|
bioconductor->guix-package
|
2018-06-08 12:46:43 +02:00
|
|
|
|
cran-recursive-import
|
2015-12-16 14:45:28 +01:00
|
|
|
|
%cran-updater
|
2017-05-16 21:42:18 +02:00
|
|
|
|
%bioconductor-updater
|
|
|
|
|
|
|
|
|
|
cran-package?
|
|
|
|
|
bioconductor-package?
|
|
|
|
|
bioconductor-data-package?
|
|
|
|
|
bioconductor-experiment-package?))
|
2015-07-24 16:49:57 +02:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; Generate a package declaration template for the latest version of an R
|
2015-12-03 16:12:09 +01:00
|
|
|
|
;;; package on CRAN, using the DESCRIPTION file downloaded from
|
2015-07-24 16:49:57 +02:00
|
|
|
|
;;; cran.r-project.org.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(define string->license
|
|
|
|
|
(match-lambda
|
|
|
|
|
("AGPL-3" 'agpl3+)
|
|
|
|
|
("Artistic-2.0" 'artistic2.0)
|
|
|
|
|
("Apache License 2.0" 'asl2.0)
|
|
|
|
|
("BSD_2_clause" 'bsd-2)
|
2016-12-08 14:37:32 +01:00
|
|
|
|
("BSD_2_clause + file LICENSE" 'bsd-2)
|
2015-07-24 16:49:57 +02:00
|
|
|
|
("BSD_3_clause" 'bsd-3)
|
2016-12-08 14:37:32 +01:00
|
|
|
|
("BSD_3_clause + file LICENSE" 'bsd-3)
|
2017-06-26 22:02:24 +02:00
|
|
|
|
("GPL" '(list gpl2+ gpl3+))
|
2015-12-03 15:00:43 +01:00
|
|
|
|
("GPL (>= 2)" 'gpl2+)
|
|
|
|
|
("GPL (>= 3)" 'gpl3+)
|
2016-12-08 14:35:20 +01:00
|
|
|
|
("GPL-2" 'gpl2)
|
|
|
|
|
("GPL-3" 'gpl3)
|
|
|
|
|
("LGPL-2" 'lgpl2.0)
|
|
|
|
|
("LGPL-2.1" 'lgpl2.1)
|
|
|
|
|
("LGPL-3" 'lgpl3)
|
2015-12-03 15:00:43 +01:00
|
|
|
|
("LGPL (>= 2)" 'lgpl2.0+)
|
|
|
|
|
("LGPL (>= 3)" 'lgpl3+)
|
2016-12-08 14:36:27 +01:00
|
|
|
|
("MIT" 'expat)
|
|
|
|
|
("MIT + file LICENSE" 'expat)
|
2015-07-24 16:49:57 +02:00
|
|
|
|
((x) (string->license x))
|
|
|
|
|
((lst ...) `(list ,@(map string->license lst)))
|
|
|
|
|
(_ #f)))
|
|
|
|
|
|
2015-12-03 16:12:09 +01:00
|
|
|
|
|
|
|
|
|
(define (description->alist description)
|
|
|
|
|
"Convert a DESCRIPTION string into an alist."
|
|
|
|
|
(let ((lines (string-split description #\newline))
|
|
|
|
|
(parse (lambda (line acc)
|
|
|
|
|
(if (string-null? line) acc
|
|
|
|
|
;; Keys usually start with a capital letter and end with
|
|
|
|
|
;; ":". There are some exceptions, unfortunately (such
|
|
|
|
|
;; as "biocViews"). There are no blanks in a key.
|
|
|
|
|
(if (string-match "^[A-Za-z][^ :]+:( |\n|$)" line)
|
|
|
|
|
;; New key/value pair
|
|
|
|
|
(let* ((pos (string-index line #\:))
|
|
|
|
|
(key (string-take line pos))
|
|
|
|
|
(value (string-drop line (+ 1 pos))))
|
|
|
|
|
(cons (cons key
|
|
|
|
|
(string-trim-both value))
|
|
|
|
|
acc))
|
|
|
|
|
;; This is a continuation of the previous pair
|
|
|
|
|
(match-let ((((key . value) . rest) acc))
|
|
|
|
|
(cons (cons key (string-join
|
|
|
|
|
(list value
|
|
|
|
|
(string-trim-both line))))
|
|
|
|
|
rest)))))))
|
|
|
|
|
(fold parse '() lines)))
|
|
|
|
|
|
2015-07-24 16:49:57 +02:00
|
|
|
|
(define (format-inputs names)
|
|
|
|
|
"Generate a sorted list of package inputs from a list of package NAMES."
|
|
|
|
|
(map (lambda (name)
|
|
|
|
|
(list name (list 'unquote (string->symbol name))))
|
|
|
|
|
(sort names string-ci<?)))
|
|
|
|
|
|
|
|
|
|
(define* (maybe-inputs package-inputs #:optional (type 'inputs))
|
|
|
|
|
"Given a list of PACKAGE-INPUTS, tries to generate the TYPE field of a
|
|
|
|
|
package definition."
|
|
|
|
|
(match package-inputs
|
|
|
|
|
(()
|
|
|
|
|
'())
|
|
|
|
|
((package-inputs ...)
|
|
|
|
|
`((,type (,'quasiquote ,(format-inputs package-inputs)))))))
|
|
|
|
|
|
2019-01-03 08:32:05 +01:00
|
|
|
|
(define %cran-url "https://cran.r-project.org/web/packages/")
|
Use HTTPS for bioconductor.org.
* doc/guix.texi (Invoking guix import, Invoking guix refresh): Use HTTPS for
bioconductor.org URLs.
* gnu/packages/bioinformatics.scm (r-annotate, r-geneplotter, r-genefilter)
(r-deseq2, r-dexseq, r-annotationforge, r-rbgl, r-gseabase, r-category)
(r-gostats, r-shortread, r-biocgenerics, r-biocinstaller, r-biocviews)
(r-biocstyle, r-bioccheck, r-s4vectors, r-iranges, r-genomeinfodbdata)
(r-genomeinfodb, r-xvector, r-genomicranges, r-biobase, r-annotationdbi)
(r-biomart, r-biocparallel, r-biostrings, r-rsamtools, r-delayedarray)
(r-summarizedexperiment, r-genomicalignments, r-rtracklayer)
(r-genomicfeatures, r-graph, r-topgo, r-bsgenome, r-impute, r-seqpattern)
(r-seqlogo, r-motifrg, r-bamsignals, r-mutationalpatterns, r-tximport)
(r-rhdf5, r-chipseq, r-sva, r-affy, r-vsn, r-mzid, r-msnid)
(r-interactivedisplaybase, r-annotationhub)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (r-txdb-hsapiens-ucsc-hg19-knowngene)
(r-go-db, r-bsgenome-hsapiens-1000genomes-hs37d5, r-org-hs-eg-db)
(r-org-ce-eg-db, r-org-dm-eg-db, r-org-mm-eg-db)
(r-bsgenome-hsapiens-ucsc-hg19, r-bsgenome-mmusculus-ucsc-mm9)
(r-bsgenome-mmusculus-ucsc-mm10, r-txdb-mmusculus-ucsc-mm10-knowngene)
(r-bsgenome-celegans-ucsc-ce6, r-bsgenome-celegans-ucsc-ce10)
(r-bsgenome-dmelanogaster-ucsc-dm3, r-copyhelper)[source, home-page]:
Likewise.
* gnu/packages/statistics.scm (r-rcurl)[source]: Likewise.
* guix/build-system/r.scm (bioconductor-uri): Likewise.
* guix/import/cran.scm (%cran-url, bioconductor-package?)
(bioconductor-data-package?, bioconductor-experiment-package?): Likewise.
2017-10-20 02:39:56 +02:00
|
|
|
|
(define %bioconductor-url "https://bioconductor.org/packages/")
|
2015-12-16 14:45:28 +01:00
|
|
|
|
|
2018-11-06 18:21:24 +01:00
|
|
|
|
;; The latest Bioconductor release is 3.8. Bioconductor packages should be
|
2015-12-16 14:45:28 +01:00
|
|
|
|
;; updated together.
|
2018-11-06 18:21:24 +01:00
|
|
|
|
(define %bioconductor-version "3.8")
|
2017-11-06 17:09:06 +01:00
|
|
|
|
|
|
|
|
|
(define %bioconductor-packages-list-url
|
|
|
|
|
(string-append "https://bioconductor.org/packages/"
|
|
|
|
|
%bioconductor-version "/bioc/src/contrib/PACKAGES"))
|
|
|
|
|
|
|
|
|
|
(define (bioconductor-packages-list)
|
|
|
|
|
"Return the latest version of package NAME for the current bioconductor
|
|
|
|
|
release."
|
|
|
|
|
(let ((url (string->uri %bioconductor-packages-list-url)))
|
|
|
|
|
(guard (c ((http-get-error? c)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"error: failed to retrieve list of packages from ~s: ~a (~s)~%"
|
|
|
|
|
(uri->string (http-get-error-uri c))
|
|
|
|
|
(http-get-error-code c)
|
|
|
|
|
(http-get-error-reason c))
|
|
|
|
|
#f))
|
|
|
|
|
;; Split the big list on empty lines, then turn each chunk into an
|
|
|
|
|
;; alist of attributes.
|
|
|
|
|
(map (lambda (chunk)
|
|
|
|
|
(description->alist (string-join chunk "\n")))
|
|
|
|
|
(chunk-lines (read-lines (http-fetch/cached url)))))))
|
|
|
|
|
|
|
|
|
|
(define (latest-bioconductor-package-version name)
|
|
|
|
|
"Return the version string corresponding to the latest release of the
|
|
|
|
|
bioconductor package NAME, or #F if the package is unknown."
|
|
|
|
|
(and=> (find (lambda (meta)
|
|
|
|
|
(string=? (assoc-ref meta "Package") name))
|
|
|
|
|
(bioconductor-packages-list))
|
|
|
|
|
(cut assoc-ref <> "Version")))
|
2015-12-16 14:45:28 +01:00
|
|
|
|
|
2019-01-03 08:31:15 +01:00
|
|
|
|
;; Little helper to download URLs only once.
|
|
|
|
|
(define download
|
|
|
|
|
(memoize
|
|
|
|
|
(lambda (url)
|
|
|
|
|
(with-store store (download-to-store store url)))))
|
|
|
|
|
|
2017-04-05 15:37:03 +02:00
|
|
|
|
(define (fetch-description repository name)
|
2015-12-03 16:12:09 +01:00
|
|
|
|
"Return an alist of the contents of the DESCRIPTION file for the R package
|
2017-04-05 15:37:03 +02:00
|
|
|
|
NAME in the given REPOSITORY, or #f in case of failure. NAME is
|
|
|
|
|
case-sensitive."
|
2017-11-06 17:10:41 +01:00
|
|
|
|
(case repository
|
|
|
|
|
((cran)
|
|
|
|
|
(let ((url (string-append %cran-url name "/DESCRIPTION")))
|
|
|
|
|
(guard (c ((http-get-error? c)
|
|
|
|
|
(format (current-error-port)
|
|
|
|
|
"error: failed to retrieve package information \
|
2016-12-17 15:24:45 +01:00
|
|
|
|
from ~s: ~a (~s)~%"
|
2017-11-06 17:10:41 +01:00
|
|
|
|
(uri->string (http-get-error-uri c))
|
|
|
|
|
(http-get-error-code c)
|
|
|
|
|
(http-get-error-reason c))
|
|
|
|
|
#f))
|
|
|
|
|
(description->alist (read-string (http-fetch url))))))
|
|
|
|
|
((bioconductor)
|
|
|
|
|
;; Currently, the bioconductor project does not offer a way to access a
|
|
|
|
|
;; package's DESCRIPTION file over HTTP, so we determine the version,
|
|
|
|
|
;; download the source tarball, and then extract the DESCRIPTION file.
|
2018-12-20 09:37:58 +01:00
|
|
|
|
(and-let* ((version (latest-bioconductor-package-version name))
|
|
|
|
|
(url (car (bioconductor-uri name version)))
|
2019-01-03 08:31:15 +01:00
|
|
|
|
(tarball (download url)))
|
2017-11-06 17:10:41 +01:00
|
|
|
|
(call-with-temporary-directory
|
|
|
|
|
(lambda (dir)
|
|
|
|
|
(parameterize ((current-error-port (%make-void-port "rw+"))
|
|
|
|
|
(current-output-port (%make-void-port "rw+")))
|
|
|
|
|
(and (zero? (system* "tar" "--wildcards" "-x"
|
|
|
|
|
"--strip-components=1"
|
|
|
|
|
"-C" dir
|
|
|
|
|
"-f" tarball "*/DESCRIPTION"))
|
|
|
|
|
(description->alist (with-input-from-file
|
|
|
|
|
(string-append dir "/DESCRIPTION") read-string))))))))))
|
2015-12-03 16:12:09 +01:00
|
|
|
|
|
|
|
|
|
(define (listify meta field)
|
|
|
|
|
"Look up FIELD in the alist META. If FIELD contains a comma-separated
|
|
|
|
|
string, turn it into a list and strip off parenthetic expressions. Return the
|
|
|
|
|
empty list when the FIELD cannot be found."
|
|
|
|
|
(let ((value (assoc-ref meta field)))
|
|
|
|
|
(if (not value)
|
|
|
|
|
'()
|
|
|
|
|
;; Strip off parentheses
|
|
|
|
|
(let ((items (string-split (regexp-substitute/global
|
|
|
|
|
#f "( *\\([^\\)]+\\)) *"
|
|
|
|
|
value 'pre 'post)
|
|
|
|
|
#\,)))
|
2015-12-16 14:29:38 +01:00
|
|
|
|
(remove (lambda (item)
|
|
|
|
|
(or (string-null? item)
|
|
|
|
|
;; When there is whitespace inside of items it is
|
|
|
|
|
;; probably because this was not an actual list to
|
|
|
|
|
;; begin with.
|
|
|
|
|
(string-any char-set:whitespace item)))
|
2015-12-03 16:12:09 +01:00
|
|
|
|
(map string-trim-both items))))))
|
|
|
|
|
|
2016-05-17 15:22:30 +02:00
|
|
|
|
(define default-r-packages
|
2017-03-12 00:21:39 +01:00
|
|
|
|
(list "base"
|
2016-05-17 15:22:30 +02:00
|
|
|
|
"compiler"
|
|
|
|
|
"grDevices"
|
|
|
|
|
"graphics"
|
|
|
|
|
"grid"
|
|
|
|
|
"methods"
|
|
|
|
|
"parallel"
|
|
|
|
|
"splines"
|
|
|
|
|
"stats"
|
|
|
|
|
"stats4"
|
|
|
|
|
"tcltk"
|
|
|
|
|
"tools"
|
|
|
|
|
"translations"
|
|
|
|
|
"utils"))
|
|
|
|
|
|
2018-06-08 12:46:43 +02:00
|
|
|
|
(define cran-guix-name (cut guix-name "r-" <>))
|
2016-07-06 12:42:38 +02:00
|
|
|
|
|
2017-03-27 12:53:13 +02:00
|
|
|
|
(define (needs-fortran? tarball)
|
|
|
|
|
"Check if the TARBALL contains Fortran source files."
|
|
|
|
|
(define (check pattern)
|
|
|
|
|
(parameterize ((current-error-port (%make-void-port "rw+"))
|
|
|
|
|
(current-output-port (%make-void-port "rw+")))
|
|
|
|
|
(zero? (system* "tar" "--wildcards" "--list" pattern "-f" tarball))))
|
|
|
|
|
(or (check "*.f90")
|
|
|
|
|
(check "*.f95")
|
|
|
|
|
(check "*.f")))
|
|
|
|
|
|
2017-04-05 18:42:07 +02:00
|
|
|
|
(define (tarball-files-match-pattern? tarball regexp . file-patterns)
|
|
|
|
|
"Return #T if any of the files represented by FILE-PATTERNS in the TARBALL
|
|
|
|
|
match the given REGEXP."
|
2017-03-27 12:53:13 +02:00
|
|
|
|
(call-with-temporary-directory
|
|
|
|
|
(lambda (dir)
|
2017-04-05 18:42:07 +02:00
|
|
|
|
(let ((pattern (make-regexp regexp)))
|
2017-03-27 12:53:13 +02:00
|
|
|
|
(parameterize ((current-error-port (%make-void-port "rw+")))
|
2017-04-05 18:42:07 +02:00
|
|
|
|
(apply system* "tar"
|
|
|
|
|
"xf" tarball "-C" dir
|
|
|
|
|
`("--wildcards" ,@file-patterns)))
|
2017-03-27 12:53:13 +02:00
|
|
|
|
(any (lambda (file)
|
|
|
|
|
(call-with-input-file file
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(let loop ()
|
|
|
|
|
(let ((line (read-line port)))
|
|
|
|
|
(cond
|
|
|
|
|
((eof-object? line) #f)
|
|
|
|
|
((regexp-exec pattern line) #t)
|
2017-04-05 18:42:07 +02:00
|
|
|
|
(else (loop))))))))
|
2017-03-27 12:53:13 +02:00
|
|
|
|
(find-files dir))))))
|
|
|
|
|
|
2017-04-05 18:42:07 +02:00
|
|
|
|
(define (needs-zlib? tarball)
|
|
|
|
|
"Return #T if any of the Makevars files in the src directory of the TARBALL
|
|
|
|
|
contain a zlib linker flag."
|
|
|
|
|
(tarball-files-match-pattern?
|
|
|
|
|
tarball "-lz"
|
|
|
|
|
"*/src/Makevars*" "*/src/configure*" "*/configure*"))
|
|
|
|
|
|
2017-04-05 18:42:08 +02:00
|
|
|
|
(define (needs-pkg-config? tarball)
|
|
|
|
|
"Return #T if any of the Makevars files in the src directory of the TARBALL
|
|
|
|
|
reference the pkg-config tool."
|
|
|
|
|
(tarball-files-match-pattern?
|
|
|
|
|
tarball "pkg-config"
|
|
|
|
|
"*/src/Makevars*" "*/src/configure*" "*/configure*"))
|
|
|
|
|
|
2015-12-16 14:45:28 +01:00
|
|
|
|
(define (description->package repository meta)
|
|
|
|
|
"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."
|
|
|
|
|
(let* ((base-url (case repository
|
|
|
|
|
((cran) %cran-url)
|
|
|
|
|
((bioconductor) %bioconductor-url)))
|
|
|
|
|
(uri-helper (case repository
|
|
|
|
|
((cran) cran-uri)
|
|
|
|
|
((bioconductor) bioconductor-uri)))
|
|
|
|
|
(name (assoc-ref meta "Package"))
|
2015-12-03 16:12:09 +01:00
|
|
|
|
(synopsis (assoc-ref meta "Title"))
|
|
|
|
|
(version (assoc-ref meta "Version"))
|
|
|
|
|
(license (string->license (assoc-ref meta "License")))
|
|
|
|
|
;; Some packages have multiple home pages. Some have none.
|
|
|
|
|
(home-page (match (listify meta "URL")
|
|
|
|
|
((url rest ...) url)
|
2015-12-16 14:45:28 +01:00
|
|
|
|
(_ (string-append base-url name))))
|
|
|
|
|
(source-url (match (uri-helper name version)
|
2015-12-03 16:12:09 +01:00
|
|
|
|
((url rest ...) url)
|
2015-12-16 14:45:28 +01:00
|
|
|
|
((? string? url) url)
|
2015-12-03 16:12:09 +01:00
|
|
|
|
(_ #f)))
|
2019-01-03 08:31:15 +01:00
|
|
|
|
(tarball (download source-url))
|
2017-03-27 12:53:13 +02:00
|
|
|
|
(sysdepends (append
|
|
|
|
|
(if (needs-zlib? tarball) '("zlib") '())
|
|
|
|
|
(map string-downcase (listify meta "SystemRequirements"))))
|
2016-05-17 15:22:30 +02:00
|
|
|
|
(propagate (filter (lambda (name)
|
|
|
|
|
(not (member name default-r-packages)))
|
|
|
|
|
(lset-union equal?
|
|
|
|
|
(listify meta "Imports")
|
|
|
|
|
(listify meta "LinkingTo")
|
|
|
|
|
(delete "R"
|
|
|
|
|
(listify meta "Depends"))))))
|
2016-05-17 15:17:54 +02:00
|
|
|
|
(values
|
|
|
|
|
`(package
|
2018-06-08 12:46:43 +02:00
|
|
|
|
(name ,(cran-guix-name name))
|
2016-05-17 15:17:54 +02:00
|
|
|
|
(version ,version)
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (,(procedure-name uri-helper) ,name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
,(bytevector->nix-base32-string (file-sha256 tarball))))))
|
|
|
|
|
,@(if (not (equal? (string-append "r-" name)
|
2018-06-08 12:46:43 +02:00
|
|
|
|
(cran-guix-name name)))
|
2016-05-17 15:17:54 +02:00
|
|
|
|
`((properties ,`(,'quasiquote ((,'upstream-name . ,name)))))
|
|
|
|
|
'())
|
|
|
|
|
(build-system r-build-system)
|
|
|
|
|
,@(maybe-inputs sysdepends)
|
2018-06-08 12:46:43 +02:00
|
|
|
|
,@(maybe-inputs (map cran-guix-name propagate) 'propagated-inputs)
|
2017-04-05 18:42:08 +02:00
|
|
|
|
,@(maybe-inputs
|
|
|
|
|
`(,@(if (needs-fortran? tarball)
|
|
|
|
|
'("gfortran") '())
|
|
|
|
|
,@(if (needs-pkg-config? tarball)
|
|
|
|
|
'("pkg-config") '()))
|
|
|
|
|
'native-inputs)
|
2016-05-17 15:17:54 +02:00
|
|
|
|
(home-page ,(if (string-null? home-page)
|
|
|
|
|
(string-append base-url name)
|
|
|
|
|
home-page))
|
|
|
|
|
(synopsis ,synopsis)
|
|
|
|
|
(description ,(beautify-description (or (assoc-ref meta "Description")
|
|
|
|
|
"")))
|
|
|
|
|
(license ,license))
|
|
|
|
|
propagate)))
|
2015-07-24 16:49:57 +02:00
|
|
|
|
|
2016-05-17 16:38:17 +02:00
|
|
|
|
(define cran->guix-package
|
|
|
|
|
(memoize
|
|
|
|
|
(lambda* (package-name #:optional (repo 'cran))
|
|
|
|
|
"Fetch the metadata for PACKAGE-NAME from REPO and return the `package'
|
2015-12-16 14:45:28 +01:00
|
|
|
|
s-expression corresponding to that package, or #f on failure."
|
2018-12-20 09:37:58 +01:00
|
|
|
|
(let ((description (fetch-description repo package-name)))
|
|
|
|
|
(if (and (not description)
|
|
|
|
|
(eq? repo 'bioconductor))
|
|
|
|
|
;; Retry import from CRAN
|
|
|
|
|
(cran->guix-package package-name 'cran)
|
2019-01-03 08:32:50 +01:00
|
|
|
|
(and description
|
|
|
|
|
(description->package repo description)))))))
|
2016-05-17 16:38:17 +02:00
|
|
|
|
|
2019-01-03 08:33:46 +01:00
|
|
|
|
(define* (cran-recursive-import package-name #:optional (repo 'cran))
|
2018-06-08 12:46:43 +02:00
|
|
|
|
(recursive-import package-name repo
|
|
|
|
|
#:repo->guix-package cran->guix-package
|
|
|
|
|
#:guix-name cran-guix-name))
|
2015-10-21 14:36:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Updater.
|
|
|
|
|
;;;
|
|
|
|
|
|
2015-12-16 14:22:17 +01:00
|
|
|
|
(define (package->upstream-name package)
|
|
|
|
|
"Return the upstream name of the PACKAGE."
|
|
|
|
|
(let* ((properties (package-properties package))
|
|
|
|
|
(upstream-name (and=> properties
|
|
|
|
|
(cut assoc-ref <> 'upstream-name))))
|
|
|
|
|
(if upstream-name
|
|
|
|
|
upstream-name
|
|
|
|
|
(match (package-source package)
|
|
|
|
|
((? origin? origin)
|
|
|
|
|
(match (origin-uri origin)
|
2016-03-22 15:12:30 +01:00
|
|
|
|
((or (? string? url) (url _ ...))
|
2015-12-16 14:22:17 +01:00
|
|
|
|
(let ((end (string-rindex url #\_))
|
|
|
|
|
(start (string-rindex url #\/)))
|
|
|
|
|
;; The URL ends on
|
|
|
|
|
;; (string-append "/" name "_" version ".tar.gz")
|
2017-05-04 11:52:33 +02:00
|
|
|
|
(and start end (substring url (+ start 1) end))))
|
2015-12-16 14:22:17 +01:00
|
|
|
|
(_ #f)))
|
|
|
|
|
(_ #f)))))
|
|
|
|
|
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(define (latest-cran-release pkg)
|
|
|
|
|
"Return an <upstream-source> for the latest release of the package PKG."
|
2015-12-03 16:12:09 +01:00
|
|
|
|
|
2015-12-16 14:22:17 +01:00
|
|
|
|
(define upstream-name
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(package->upstream-name pkg))
|
2015-12-03 16:12:09 +01:00
|
|
|
|
|
|
|
|
|
(define meta
|
2017-04-05 15:37:03 +02:00
|
|
|
|
(fetch-description 'cran upstream-name))
|
2015-12-03 16:12:09 +01:00
|
|
|
|
|
|
|
|
|
(and meta
|
|
|
|
|
(let ((version (assoc-ref meta "Version")))
|
|
|
|
|
;; CRAN does not provide signatures.
|
|
|
|
|
(upstream-source
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(package (package-name pkg))
|
2015-12-03 16:12:09 +01:00
|
|
|
|
(version version)
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(urls (cran-uri upstream-name version))
|
|
|
|
|
(input-changes
|
|
|
|
|
(changed-inputs pkg
|
|
|
|
|
(description->package 'cran meta)))))))
|
2015-10-21 14:36:14 +02:00
|
|
|
|
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(define (latest-bioconductor-release pkg)
|
|
|
|
|
"Return an <upstream-source> for the latest release of the package PKG."
|
2015-12-16 14:45:28 +01:00
|
|
|
|
|
|
|
|
|
(define upstream-name
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(package->upstream-name pkg))
|
2015-12-16 14:45:28 +01:00
|
|
|
|
|
2017-11-06 17:10:41 +01:00
|
|
|
|
(define version
|
|
|
|
|
(latest-bioconductor-package-version upstream-name))
|
2015-12-16 14:45:28 +01:00
|
|
|
|
|
2017-11-06 17:10:41 +01:00
|
|
|
|
(and version
|
|
|
|
|
;; Bioconductor does not provide signatures.
|
|
|
|
|
(upstream-source
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(package (package-name pkg))
|
2017-11-06 17:10:41 +01:00
|
|
|
|
(version version)
|
2019-01-11 09:27:21 +01:00
|
|
|
|
(urls (bioconductor-uri upstream-name version))
|
|
|
|
|
(input-changes
|
|
|
|
|
(changed-inputs
|
|
|
|
|
pkg
|
|
|
|
|
(cran->guix-package upstream-name 'bioconductor))))))
|
2015-12-16 14:45:28 +01:00
|
|
|
|
|
2015-10-21 14:36:14 +02:00
|
|
|
|
(define (cran-package? package)
|
|
|
|
|
"Return true if PACKAGE is an R package from CRAN."
|
2015-12-16 14:45:28 +01:00
|
|
|
|
(and (string-prefix? "r-" (package-name package))
|
2017-05-04 11:52:33 +02:00
|
|
|
|
;; Check if the upstream name can be extracted from package uri.
|
|
|
|
|
(package->upstream-name package)
|
|
|
|
|
;; Check if package uri(s) are prefixed by "mirror://cran".
|
2015-12-16 14:45:28 +01:00
|
|
|
|
(match (and=> (package-source package) origin-uri)
|
|
|
|
|
((? string? uri)
|
|
|
|
|
(string-prefix? "mirror://cran" uri))
|
|
|
|
|
((? list? uris)
|
|
|
|
|
(any (cut string-prefix? "mirror://cran" <>) uris))
|
|
|
|
|
(_ #f))))
|
|
|
|
|
|
|
|
|
|
(define (bioconductor-package? package)
|
|
|
|
|
"Return true if PACKAGE is an R package from Bioconductor."
|
2016-10-26 09:47:40 +02:00
|
|
|
|
(let ((predicate (lambda (uri)
|
Use HTTPS for bioconductor.org.
* doc/guix.texi (Invoking guix import, Invoking guix refresh): Use HTTPS for
bioconductor.org URLs.
* gnu/packages/bioinformatics.scm (r-annotate, r-geneplotter, r-genefilter)
(r-deseq2, r-dexseq, r-annotationforge, r-rbgl, r-gseabase, r-category)
(r-gostats, r-shortread, r-biocgenerics, r-biocinstaller, r-biocviews)
(r-biocstyle, r-bioccheck, r-s4vectors, r-iranges, r-genomeinfodbdata)
(r-genomeinfodb, r-xvector, r-genomicranges, r-biobase, r-annotationdbi)
(r-biomart, r-biocparallel, r-biostrings, r-rsamtools, r-delayedarray)
(r-summarizedexperiment, r-genomicalignments, r-rtracklayer)
(r-genomicfeatures, r-graph, r-topgo, r-bsgenome, r-impute, r-seqpattern)
(r-seqlogo, r-motifrg, r-bamsignals, r-mutationalpatterns, r-tximport)
(r-rhdf5, r-chipseq, r-sva, r-affy, r-vsn, r-mzid, r-msnid)
(r-interactivedisplaybase, r-annotationhub)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (r-txdb-hsapiens-ucsc-hg19-knowngene)
(r-go-db, r-bsgenome-hsapiens-1000genomes-hs37d5, r-org-hs-eg-db)
(r-org-ce-eg-db, r-org-dm-eg-db, r-org-mm-eg-db)
(r-bsgenome-hsapiens-ucsc-hg19, r-bsgenome-mmusculus-ucsc-mm9)
(r-bsgenome-mmusculus-ucsc-mm10, r-txdb-mmusculus-ucsc-mm10-knowngene)
(r-bsgenome-celegans-ucsc-ce6, r-bsgenome-celegans-ucsc-ce10)
(r-bsgenome-dmelanogaster-ucsc-dm3, r-copyhelper)[source, home-page]:
Likewise.
* gnu/packages/statistics.scm (r-rcurl)[source]: Likewise.
* guix/build-system/r.scm (bioconductor-uri): Likewise.
* guix/import/cran.scm (%cran-url, bioconductor-package?)
(bioconductor-data-package?, bioconductor-experiment-package?): Likewise.
2017-10-20 02:39:56 +02:00
|
|
|
|
(and (string-prefix? "https://bioconductor.org" uri)
|
2017-04-05 15:37:03 +02:00
|
|
|
|
;; Data packages are neither listed in SVN nor on
|
|
|
|
|
;; the Github mirror, so we have to exclude them
|
|
|
|
|
;; from the set of bioconductor packages that can be
|
|
|
|
|
;; updated automatically.
|
2017-04-05 18:42:05 +02:00
|
|
|
|
(not (string-contains uri "/data/annotation/"))
|
|
|
|
|
;; Experiment packages are in a separate repository.
|
|
|
|
|
(not (string-contains uri "/data/experiment/"))))))
|
2016-10-26 09:47:40 +02:00
|
|
|
|
(and (string-prefix? "r-" (package-name package))
|
|
|
|
|
(match (and=> (package-source package) origin-uri)
|
|
|
|
|
((? string? uri)
|
|
|
|
|
(predicate uri))
|
|
|
|
|
((? list? uris)
|
|
|
|
|
(any predicate uris))
|
|
|
|
|
(_ #f)))))
|
|
|
|
|
|
|
|
|
|
(define (bioconductor-data-package? package)
|
|
|
|
|
"Return true if PACKAGE is an R data package from Bioconductor."
|
|
|
|
|
(let ((predicate (lambda (uri)
|
Use HTTPS for bioconductor.org.
* doc/guix.texi (Invoking guix import, Invoking guix refresh): Use HTTPS for
bioconductor.org URLs.
* gnu/packages/bioinformatics.scm (r-annotate, r-geneplotter, r-genefilter)
(r-deseq2, r-dexseq, r-annotationforge, r-rbgl, r-gseabase, r-category)
(r-gostats, r-shortread, r-biocgenerics, r-biocinstaller, r-biocviews)
(r-biocstyle, r-bioccheck, r-s4vectors, r-iranges, r-genomeinfodbdata)
(r-genomeinfodb, r-xvector, r-genomicranges, r-biobase, r-annotationdbi)
(r-biomart, r-biocparallel, r-biostrings, r-rsamtools, r-delayedarray)
(r-summarizedexperiment, r-genomicalignments, r-rtracklayer)
(r-genomicfeatures, r-graph, r-topgo, r-bsgenome, r-impute, r-seqpattern)
(r-seqlogo, r-motifrg, r-bamsignals, r-mutationalpatterns, r-tximport)
(r-rhdf5, r-chipseq, r-sva, r-affy, r-vsn, r-mzid, r-msnid)
(r-interactivedisplaybase, r-annotationhub)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (r-txdb-hsapiens-ucsc-hg19-knowngene)
(r-go-db, r-bsgenome-hsapiens-1000genomes-hs37d5, r-org-hs-eg-db)
(r-org-ce-eg-db, r-org-dm-eg-db, r-org-mm-eg-db)
(r-bsgenome-hsapiens-ucsc-hg19, r-bsgenome-mmusculus-ucsc-mm9)
(r-bsgenome-mmusculus-ucsc-mm10, r-txdb-mmusculus-ucsc-mm10-knowngene)
(r-bsgenome-celegans-ucsc-ce6, r-bsgenome-celegans-ucsc-ce10)
(r-bsgenome-dmelanogaster-ucsc-dm3, r-copyhelper)[source, home-page]:
Likewise.
* gnu/packages/statistics.scm (r-rcurl)[source]: Likewise.
* guix/build-system/r.scm (bioconductor-uri): Likewise.
* guix/import/cran.scm (%cran-url, bioconductor-package?)
(bioconductor-data-package?, bioconductor-experiment-package?): Likewise.
2017-10-20 02:39:56 +02:00
|
|
|
|
(and (string-prefix? "https://bioconductor.org" uri)
|
2016-10-26 09:47:40 +02:00
|
|
|
|
(string-contains uri "/data/annotation/")))))
|
|
|
|
|
(and (string-prefix? "r-" (package-name package))
|
|
|
|
|
(match (and=> (package-source package) origin-uri)
|
|
|
|
|
((? string? uri)
|
|
|
|
|
(predicate uri))
|
|
|
|
|
((? list? uris)
|
|
|
|
|
(any predicate uris))
|
|
|
|
|
(_ #f)))))
|
2015-10-21 14:36:14 +02:00
|
|
|
|
|
2017-04-05 18:42:06 +02:00
|
|
|
|
(define (bioconductor-experiment-package? package)
|
|
|
|
|
"Return true if PACKAGE is an R experiment package from Bioconductor."
|
|
|
|
|
(let ((predicate (lambda (uri)
|
Use HTTPS for bioconductor.org.
* doc/guix.texi (Invoking guix import, Invoking guix refresh): Use HTTPS for
bioconductor.org URLs.
* gnu/packages/bioinformatics.scm (r-annotate, r-geneplotter, r-genefilter)
(r-deseq2, r-dexseq, r-annotationforge, r-rbgl, r-gseabase, r-category)
(r-gostats, r-shortread, r-biocgenerics, r-biocinstaller, r-biocviews)
(r-biocstyle, r-bioccheck, r-s4vectors, r-iranges, r-genomeinfodbdata)
(r-genomeinfodb, r-xvector, r-genomicranges, r-biobase, r-annotationdbi)
(r-biomart, r-biocparallel, r-biostrings, r-rsamtools, r-delayedarray)
(r-summarizedexperiment, r-genomicalignments, r-rtracklayer)
(r-genomicfeatures, r-graph, r-topgo, r-bsgenome, r-impute, r-seqpattern)
(r-seqlogo, r-motifrg, r-bamsignals, r-mutationalpatterns, r-tximport)
(r-rhdf5, r-chipseq, r-sva, r-affy, r-vsn, r-mzid, r-msnid)
(r-interactivedisplaybase, r-annotationhub)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (r-txdb-hsapiens-ucsc-hg19-knowngene)
(r-go-db, r-bsgenome-hsapiens-1000genomes-hs37d5, r-org-hs-eg-db)
(r-org-ce-eg-db, r-org-dm-eg-db, r-org-mm-eg-db)
(r-bsgenome-hsapiens-ucsc-hg19, r-bsgenome-mmusculus-ucsc-mm9)
(r-bsgenome-mmusculus-ucsc-mm10, r-txdb-mmusculus-ucsc-mm10-knowngene)
(r-bsgenome-celegans-ucsc-ce6, r-bsgenome-celegans-ucsc-ce10)
(r-bsgenome-dmelanogaster-ucsc-dm3, r-copyhelper)[source, home-page]:
Likewise.
* gnu/packages/statistics.scm (r-rcurl)[source]: Likewise.
* guix/build-system/r.scm (bioconductor-uri): Likewise.
* guix/import/cran.scm (%cran-url, bioconductor-package?)
(bioconductor-data-package?, bioconductor-experiment-package?): Likewise.
2017-10-20 02:39:56 +02:00
|
|
|
|
(and (string-prefix? "https://bioconductor.org" uri)
|
2017-04-05 18:42:06 +02:00
|
|
|
|
(string-contains uri "/data/experiment/")))))
|
|
|
|
|
(and (string-prefix? "r-" (package-name package))
|
|
|
|
|
(match (and=> (package-source package) origin-uri)
|
|
|
|
|
((? string? uri)
|
|
|
|
|
(predicate uri))
|
|
|
|
|
((? list? uris)
|
|
|
|
|
(any predicate uris))
|
|
|
|
|
(_ #f)))))
|
|
|
|
|
|
2015-10-21 14:36:14 +02:00
|
|
|
|
(define %cran-updater
|
2015-10-26 19:24:53 +01:00
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'cran)
|
|
|
|
|
(description "Updater for CRAN packages")
|
|
|
|
|
(pred cran-package?)
|
2015-12-16 14:45:28 +01:00
|
|
|
|
(latest latest-cran-release)))
|
|
|
|
|
|
|
|
|
|
(define %bioconductor-updater
|
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'bioconductor)
|
|
|
|
|
(description "Updater for Bioconductor packages")
|
|
|
|
|
(pred bioconductor-package?)
|
|
|
|
|
(latest latest-bioconductor-release)))
|
2015-10-21 14:36:14 +02:00
|
|
|
|
|
|
|
|
|
;;; cran.scm ends here
|