2016-09-22 11:40:58 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
2019-09-01 16:20:36 +02:00
|
|
|
|
;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
|
2019-09-09 17:36:04 +02:00
|
|
|
|
;;; Copyright © 2019 Martin Becze <mjbecze@riseup.net>
|
2016-09-22 11:40:58 +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 crate)
|
|
|
|
|
#:use-module (guix base32)
|
|
|
|
|
#:use-module (guix build-system cargo)
|
|
|
|
|
#:use-module ((guix download) #:prefix download:)
|
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)
|
2016-09-22 11:40:58 +02:00
|
|
|
|
#:use-module (guix http-client)
|
2019-09-01 16:20:36 +02:00
|
|
|
|
#:use-module (guix json)
|
2016-09-22 11:40:58 +02:00
|
|
|
|
#:use-module (guix import json)
|
|
|
|
|
#:use-module (guix import utils)
|
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
|
#:use-module (guix monads)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix upstream)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (ice-9 match)
|
2019-09-01 16:32:11 +02:00
|
|
|
|
#:use-module (ice-9 regex)
|
2016-09-22 11:40:58 +02:00
|
|
|
|
#:use-module (json)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-2)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:export (crate->guix-package
|
2016-09-22 11:40:58 +02:00
|
|
|
|
guix-package->crate-name
|
|
|
|
|
%crate-updater))
|
2016-09-22 11:40:58 +02:00
|
|
|
|
|
2019-09-01 16:20:36 +02:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Interface to https://crates.io/api/v1.
|
|
|
|
|
;;;
|
2016-09-22 11:40:58 +02:00
|
|
|
|
|
2019-09-01 16:20:36 +02:00
|
|
|
|
;; Crates. A crate is essentially a "package". It can have several
|
|
|
|
|
;; "versions", each of which has its own set of dependencies, license,
|
|
|
|
|
;; etc.--see <crate-version> below.
|
|
|
|
|
(define-json-mapping <crate> make-crate crate?
|
|
|
|
|
json->crate
|
|
|
|
|
(name crate-name) ;string
|
|
|
|
|
(latest-version crate-latest-version "max_version") ;string
|
|
|
|
|
(home-page crate-home-page "homepage") ;string | #nil
|
|
|
|
|
(repository crate-repository) ;string
|
|
|
|
|
(description crate-description) ;string
|
|
|
|
|
(keywords crate-keywords ;list of strings
|
|
|
|
|
"keywords" vector->list)
|
|
|
|
|
(categories crate-categories ;list of strings
|
|
|
|
|
"categories" vector->list)
|
|
|
|
|
(versions crate-versions "actual_versions" ;list of <crate-version>
|
|
|
|
|
(lambda (vector)
|
|
|
|
|
(map json->crate-version
|
|
|
|
|
(vector->list vector))))
|
|
|
|
|
(links crate-links)) ;alist
|
2016-09-22 11:40:58 +02:00
|
|
|
|
|
2019-09-01 16:20:36 +02:00
|
|
|
|
;; Crate version.
|
|
|
|
|
(define-json-mapping <crate-version> make-crate-version crate-version?
|
|
|
|
|
json->crate-version
|
|
|
|
|
(id crate-version-id) ;integer
|
|
|
|
|
(number crate-version-number "num") ;string
|
|
|
|
|
(download-path crate-version-download-path "dl_path") ;string
|
|
|
|
|
(readme-path crate-version-readme-path "readme_path") ;string
|
|
|
|
|
(license crate-version-license "license") ;string
|
|
|
|
|
(links crate-version-links)) ;alist
|
|
|
|
|
|
|
|
|
|
;; Crate dependency. Each dependency (each edge in the graph) is annotated as
|
|
|
|
|
;; being a "normal" dependency or a development dependency. There also
|
|
|
|
|
;; information about the minimum required version, such as "^0.0.41".
|
|
|
|
|
(define-json-mapping <crate-dependency> make-crate-dependency
|
|
|
|
|
crate-dependency?
|
|
|
|
|
json->crate-dependency
|
|
|
|
|
(id crate-dependency-id "crate_id") ;string
|
|
|
|
|
(kind crate-dependency-kind "kind" ;'normal | 'dev
|
|
|
|
|
string->symbol)
|
|
|
|
|
(requirement crate-dependency-requirement "req")) ;string
|
|
|
|
|
|
|
|
|
|
(define (lookup-crate name)
|
|
|
|
|
"Look up NAME on https://crates.io and return the corresopnding <crate>
|
|
|
|
|
record or #f if it was not found."
|
|
|
|
|
(let ((json (json-fetch (string-append (%crate-base-url) "/api/v1/crates/"
|
|
|
|
|
name))))
|
|
|
|
|
(and=> (and json (assoc-ref json "crate"))
|
|
|
|
|
(lambda (alist)
|
|
|
|
|
;; The "versions" field of ALIST is simply a list of version IDs
|
|
|
|
|
;; (integers). Here, we squeeze in the actual version
|
|
|
|
|
;; dictionaries that are not part of ALIST but are just more
|
|
|
|
|
;; convenient handled this way.
|
|
|
|
|
(let ((versions (or (assoc-ref json "versions") '#())))
|
|
|
|
|
(json->crate `(,@alist
|
|
|
|
|
("actual_versions" . ,versions))))))))
|
|
|
|
|
|
|
|
|
|
(define (crate-version-dependencies version)
|
|
|
|
|
"Return the list of <crate-dependency> records of VERSION, a
|
|
|
|
|
<crate-version>."
|
|
|
|
|
(let* ((path (assoc-ref (crate-version-links version) "dependencies"))
|
|
|
|
|
(url (string-append (%crate-base-url) path)))
|
|
|
|
|
(match (assoc-ref (or (json-fetch url) '()) "dependencies")
|
|
|
|
|
((? vector? vector)
|
|
|
|
|
(map json->crate-dependency (vector->list vector)))
|
|
|
|
|
(_
|
|
|
|
|
'()))))
|
2016-09-22 11:40:58 +02:00
|
|
|
|
|
2019-09-01 16:20:36 +02:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Converting crates to Guix packages.
|
|
|
|
|
;;;
|
2016-09-22 11:40:58 +02:00
|
|
|
|
|
2019-05-17 09:26:07 +02:00
|
|
|
|
(define (maybe-cargo-inputs package-names)
|
|
|
|
|
(match (package-names->package-inputs package-names)
|
|
|
|
|
(()
|
|
|
|
|
'())
|
|
|
|
|
((package-inputs ...)
|
2019-06-30 16:18:20 +02:00
|
|
|
|
`(#:cargo-inputs ,package-inputs))))
|
2019-05-17 09:26:07 +02:00
|
|
|
|
|
|
|
|
|
(define (maybe-cargo-development-inputs package-names)
|
|
|
|
|
(match (package-names->package-inputs package-names)
|
|
|
|
|
(()
|
|
|
|
|
'())
|
|
|
|
|
((package-inputs ...)
|
2019-06-30 16:18:20 +02:00
|
|
|
|
`(#:cargo-development-inputs ,package-inputs))))
|
2019-05-17 09:26:07 +02:00
|
|
|
|
|
|
|
|
|
(define (maybe-arguments arguments)
|
|
|
|
|
(match arguments
|
|
|
|
|
(()
|
|
|
|
|
'())
|
|
|
|
|
((args ...)
|
|
|
|
|
`((arguments (,'quasiquote ,args))))))
|
|
|
|
|
|
|
|
|
|
(define* (make-crate-sexp #:key name version cargo-inputs cargo-development-inputs
|
2016-09-22 11:40:58 +02:00
|
|
|
|
home-page synopsis description license
|
|
|
|
|
#:allow-other-keys)
|
|
|
|
|
"Return the `package' s-expression for a rust package with the given NAME,
|
2019-05-17 09:26:07 +02:00
|
|
|
|
VERSION, CARGO-INPUTS, CARGO-DEVELOPMENT-INPUTS, HOME-PAGE, SYNOPSIS, DESCRIPTION,
|
|
|
|
|
and LICENSE."
|
2016-09-22 11:40:58 +02:00
|
|
|
|
(let* ((port (http-fetch (crate-uri name version)))
|
|
|
|
|
(guix-name (crate-name->package-name name))
|
2019-05-17 09:26:07 +02:00
|
|
|
|
(cargo-inputs (map crate-name->package-name cargo-inputs))
|
|
|
|
|
(cargo-development-inputs (map crate-name->package-name
|
|
|
|
|
cargo-development-inputs))
|
2016-09-22 11:40:58 +02:00
|
|
|
|
(pkg `(package
|
|
|
|
|
(name ,guix-name)
|
|
|
|
|
(version ,version)
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (crate-uri ,name version))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
,(bytevector->nix-base32-string (port-sha256 port))))))
|
|
|
|
|
(build-system cargo-build-system)
|
2019-05-17 09:26:07 +02:00
|
|
|
|
,@(maybe-arguments (append (maybe-cargo-inputs cargo-inputs)
|
|
|
|
|
(maybe-cargo-development-inputs
|
|
|
|
|
cargo-development-inputs)))
|
2017-01-01 16:14:45 +01:00
|
|
|
|
(home-page ,(match home-page
|
|
|
|
|
(() "")
|
|
|
|
|
(_ home-page)))
|
2016-09-22 11:40:58 +02:00
|
|
|
|
(synopsis ,synopsis)
|
|
|
|
|
(description ,(beautify-description description))
|
|
|
|
|
(license ,(match license
|
|
|
|
|
(() #f)
|
|
|
|
|
((license) license)
|
|
|
|
|
(_ `(list ,@license)))))))
|
|
|
|
|
(close-port port)
|
|
|
|
|
pkg))
|
|
|
|
|
|
2019-09-01 16:32:11 +02:00
|
|
|
|
(define %dual-license-rx
|
|
|
|
|
;; Dual licensing is represented by a string such as "MIT OR Apache-2.0".
|
|
|
|
|
;; This regexp matches that.
|
|
|
|
|
(make-regexp "^(.*) OR (.*)$"))
|
|
|
|
|
|
2019-09-09 17:36:04 +02:00
|
|
|
|
(define* (crate->guix-package crate-name #:optional version)
|
2016-09-22 11:40:58 +02:00
|
|
|
|
"Fetch the metadata for CRATE-NAME from crates.io, and return the
|
2019-09-09 17:36:04 +02:00
|
|
|
|
`package' s-expression corresponding to that package, or #f on failure.
|
|
|
|
|
When VERSION is specified, attempt to fetch that version; otherwise fetch the
|
|
|
|
|
latest version of CRATE-NAME."
|
2019-09-01 16:20:36 +02:00
|
|
|
|
(define (string->license string)
|
2019-09-01 16:32:11 +02:00
|
|
|
|
(match (regexp-exec %dual-license-rx string)
|
|
|
|
|
(#f (list (spdx-string->license string)))
|
|
|
|
|
(m (list (spdx-string->license (match:substring m 1))
|
|
|
|
|
(spdx-string->license (match:substring m 2))))))
|
2019-09-01 16:20:36 +02:00
|
|
|
|
|
|
|
|
|
(define (normal-dependency? dependency)
|
|
|
|
|
(eq? (crate-dependency-kind dependency) 'normal))
|
|
|
|
|
|
|
|
|
|
(define crate
|
|
|
|
|
(lookup-crate crate-name))
|
|
|
|
|
|
2019-09-09 17:36:04 +02:00
|
|
|
|
(define version-number
|
|
|
|
|
(or version
|
|
|
|
|
(crate-latest-version crate)))
|
|
|
|
|
|
|
|
|
|
(define version*
|
|
|
|
|
(find (lambda (version)
|
|
|
|
|
(string=? (crate-version-number version)
|
|
|
|
|
version-number))
|
|
|
|
|
(crate-versions crate)))
|
|
|
|
|
|
|
|
|
|
(and crate version*
|
|
|
|
|
(let* ((dependencies (crate-version-dependencies version*))
|
2019-09-01 16:20:36 +02:00
|
|
|
|
(dep-crates (filter normal-dependency? dependencies))
|
|
|
|
|
(dev-dep-crates (remove normal-dependency? dependencies))
|
|
|
|
|
(cargo-inputs (sort (map crate-dependency-id dep-crates)
|
|
|
|
|
string-ci<?))
|
|
|
|
|
(cargo-development-inputs
|
|
|
|
|
(sort (map crate-dependency-id dev-dep-crates)
|
|
|
|
|
string-ci<?)))
|
|
|
|
|
(make-crate-sexp #:name crate-name
|
2019-09-09 17:36:04 +02:00
|
|
|
|
#:version (crate-version-number version*)
|
2019-09-01 16:20:36 +02:00
|
|
|
|
#:cargo-inputs cargo-inputs
|
|
|
|
|
#:cargo-development-inputs cargo-development-inputs
|
|
|
|
|
#:home-page (or (crate-home-page crate)
|
|
|
|
|
(crate-repository crate))
|
|
|
|
|
#:synopsis (crate-description crate)
|
|
|
|
|
#:description (crate-description crate)
|
2019-09-09 17:36:04 +02:00
|
|
|
|
#:license (and=> (crate-version-license version*)
|
2019-09-01 16:20:36 +02:00
|
|
|
|
string->license)))))
|
2016-09-22 11:40:58 +02:00
|
|
|
|
|
|
|
|
|
(define (guix-package->crate-name package)
|
|
|
|
|
"Return the crate name of PACKAGE."
|
|
|
|
|
(and-let* ((origin (package-source package))
|
|
|
|
|
(uri (origin-uri origin))
|
|
|
|
|
(crate-url? uri)
|
|
|
|
|
(len (string-length crate-url))
|
|
|
|
|
(path (xsubstring uri len))
|
|
|
|
|
(parts (string-split path #\/)))
|
|
|
|
|
(match parts
|
|
|
|
|
((name _ ...) name))))
|
|
|
|
|
|
|
|
|
|
(define (crate-name->package-name name)
|
|
|
|
|
(string-append "rust-" (string-join (string-split name #\_) "-")))
|
|
|
|
|
|
2019-09-01 16:20:36 +02:00
|
|
|
|
|
2016-09-22 11:40:58 +02:00
|
|
|
|
;;;
|
|
|
|
|
;;; Updater
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (crate-package? package)
|
|
|
|
|
"Return true if PACKAGE is a Rust crate from crates.io."
|
|
|
|
|
(let ((source-url (and=> (package-source package) origin-uri))
|
|
|
|
|
(fetch-method (and=> (package-source package) origin-method)))
|
|
|
|
|
(and (eq? fetch-method download:url-fetch)
|
|
|
|
|
(match source-url
|
|
|
|
|
((? string?)
|
|
|
|
|
(crate-url? source-url))
|
|
|
|
|
((source-url ...)
|
|
|
|
|
(any crate-url? source-url))))))
|
|
|
|
|
|
|
|
|
|
(define (latest-release package)
|
|
|
|
|
"Return an <upstream-source> for the latest release of PACKAGE."
|
|
|
|
|
(let* ((crate-name (guix-package->crate-name package))
|
2019-09-01 16:20:36 +02:00
|
|
|
|
(crate (lookup-crate crate-name))
|
|
|
|
|
(version (crate-latest-version crate))
|
|
|
|
|
(url (crate-uri crate-name version)))
|
2016-09-22 11:40:58 +02:00
|
|
|
|
(upstream-source
|
|
|
|
|
(package (package-name package))
|
|
|
|
|
(version version)
|
|
|
|
|
(urls (list url)))))
|
|
|
|
|
|
|
|
|
|
(define %crate-updater
|
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'crates)
|
|
|
|
|
(description "Updater for crates.io packages")
|
|
|
|
|
(pred crate-package?)
|
|
|
|
|
(latest latest-release)))
|
|
|
|
|
|