aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/machine-learning.scm
diff options
context:
space:
mode:
authorJanneke Nieuwenhuizen <janneke@gnu.org>2023-10-30 10:14:37 +0100
committerJanneke Nieuwenhuizen <janneke@gnu.org>2023-10-30 10:14:37 +0100
commitdb6b00795a21cce987c844bc440081d06f99ce5e (patch)
tree1e08c157ce183d85a2416125325a3c71ab0a07b9 /gnu/packages/machine-learning.scm
parent642769707c05dc1dd5674d60cd3b55d77b35c9d9 (diff)
downloadguix-db6b00795a21cce987c844bc440081d06f99ce5e.tar.gz
guix-db6b00795a21cce987c844bc440081d06f99ce5e.zip
gnu: dezyne: Update to 2.17.7.
* gnu/packages/dezyne.scm (dezyne): Update to 2.17.7. Change-Id: I278e4e17f49b15600689cebda04298de6bbc8a65
Diffstat (limited to 'gnu/packages/machine-learning.scm')
0 files changed, 0 insertions, 0 deletions
te-1.1'. * guix/import/utils.scm (package->definition): Trim patch version from generated package names. * tests/crate.scm: (cargo>guix-package, cargo-recursive-import): Likewise. Hartmut Goebel 2020-12-02import: crate: Parameterized importing of dev dependencies....The recursive crate importer will now include development dependencies only for the top level package, but not for any of the recursively imported packages. Also #:skip-build will be false for the top-most package. * guix/import/crate.scm (make-crate-sexp): Add the key BUILD?. (crate->guix-package): Add the key INCLUDE-DEV-DEPS?. (crate-recursive-import): Likewise. * guix/scripts/import/crate.scm (guix-import-crate): Likewise. * tests/crate.scm (cargo-recursive-import): Likewise. Martin Becze 2020-12-02import: crate: Use guile-semver to resolve module versions....* guix/import/crate.scm: Add guile-semver as a soft dependency. (make-crate-sexp): Don't allow other keys. Add '#:skip-build?' to build system args. Pass a VERSION argument to 'cargo-inputs'. (crate->guix-package): Use guile-semver to resolve the correct module versions. Treat "build" dependencies as normal dependencies. (crate-name->package-name): Reuse the procedure 'guix-name' instead of duplicating its logic. * guix/import/utils.scm (package-names->package-inputs): Implement handling of (name version) pairs. * guix/scripts/import/crate.scm (guix-import-crate): Use crate-recursive-import instead of duplicate code. * tests/crate.scm (recursive-import): Change test packages versions to be distinguishable. Add version data to the test. Check created symbols, too. Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com> Martin Becze