summaryrefslogtreecommitdiff
path: root/tests/utils.scm
Commit message (Expand)AuthorAgeFilesLines
...
* store: Add `store-path-package-name'.•••* guix/store.scm (store-path-package-name): New procedure. * tests/utils.scm ("store-path-package-name"): New test. Ludovic Courtès2012-11-011-0/+7
* define-record-type*: Add the `inherit' syntactic constructor keyword.•••* guix/utils.scm (define-record-type*)[make-syntactic-constructor]: New `type' parameter. Add the `inherit' keyword and corresponding support code. * tests/utils.scm ("define-record-type* & inherit", "define-record-type* & inherit & letrec* behavior"): New tests. Ludovic Courtès2012-08-301-0/+30
* build: Pass $(NIX_INSTANTIATE) to the build and test environments.•••* Makefile.am (.scm.go): Define $NIX_INSTANTIATE. (TESTS_ENVIRONMENT): Likewise, and define $NIX_HASH. * guix/utils.scm (nixpkgs-derivation): Use $NIX_INSTANTIATE when defined. * tests/utils.scm (%nix-hash): New variable. ("sha256 & bytevector->nix-base32-string"): Use it. Ludovic Courtès2012-08-141-3/+7
* define-record-type*: Add `letrec*' behavior.•••* guix/utils.scm (define-record-type*)[make-syntactic-constructor]: Bind all the ((FIELD VALUE) ...) in a `letrec*'. Adjust `field-value' accordingly. * tests/utils.scm ("define-record-type* with letrec* behavior"): New test. Ludovic Courtès2012-07-031-0/+16
* Add `define-record-type*'.•••* guix/utils.scm (define-record-type*): New macro. * tests/utils.scm ("define-record-type*"): New test. Ludovic Courtès2012-06-271-1/+15
* Add a `%current-system' fluid.•••* guix/utils.scm (gnu-triplet->nix-system): New procedure. (%current-system): New variable. * tests/utils.scm ("gnu-triplet->nix-system"): New test. * tests/derivations.scm (%current-system): Remove. Update users to use (%current-system) instead. Ludovic Courtès2012-06-111-0/+13
* Add `base16-string->bytevector'.•••* guix/utils.scm (base16-string->bytevector): New procedure. * tests/utils.scm ("bytevector->base16-string->bytevector"): New test. Ludovic Courtès2012-06-091-0/+7
* Add `base32-string->bytevector' and `nix-base32-string->bytevector'.•••* guix/utils.scm (bytevector-quintet-set!, bytevector-quintet-set-right!, base32-string-unfold, base32-string-unfold-right, make-base32-string->bytevector, base32-string->bytevector, nix-base32-string->bytevector): New procedures. * tests/utils.scm ("base32-string->bytevector", "nix-base32-string->bytevector"): New tests. Ludovic Courtès2012-06-091-0/+16
* Fix `bytevector->nix-base32-string'.•••* guix/utils.scm (bytevector-quintet-ref-right, bytevector-quintet-fold): New procedures. (bytevector-quintet-fold-right): Add `quintet-fold' parameter; use it instead of `bytevector-quintet-fold'. (bytevector->base32-string): Pass BYTEVECTOR-QUINTET-FOLD as the first parameter. (bytevector->nix-base32-string): Pass BYTEVECTOR-QUINTET-FOLD-RIGHT as the first parameter. * tests/utils.scm ("sha256 & bytevector->nix-base32-string"): New test. Ludovic Courtès2012-06-031-1/+20
* Add (guix utils), with `bytevector->base32-string'.•••* guix/utils.scm, tests/utils.scm: New files. Ludovic Courtès2012-06-011-0/+53