aboutsummaryrefslogtreecommitdiff
path: root/AUTHORS
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2021-02-03 18:18:55 -0500
committerLeo Famulari <leo@famulari.name>2021-02-04 15:40:49 -0500
commit152d7ddc8ea27118184d27a29d31cc80b48b00f2 (patch)
tree7502d8ae327f5f329b22af837520eac00013639a /AUTHORS
parent2b17d2be6934b31b272a609d901121a83c6fea35 (diff)
downloadguix-152d7ddc8ea27118184d27a29d31cc80b48b00f2.tar.gz
guix-152d7ddc8ea27118184d27a29d31cc80b48b00f2.zip
gnu: linux-libre: Update to 5.10.13.
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.13. (linux-libre-5.10-pristine-source): Update hash.
Diffstat (limited to 'AUTHORS')
0 files changed, 0 insertions, 0 deletions
emove dependencies. (instance--sub-directory): New variable. ("channel-instance-metadata and default dependencies") ("channel-instance-metadata and directory"): New tests. ("latest-channel-instances excludes duplicate channel dependencies"): Expect 'channel-commit' to return a string and adjust accordingly. 2019-07-19channels: Strictly check the version of '.guix-channel'.Ludovic Courtès Until now the 'version' field in '.guix-channel' could be omitted, or it could be any value. * guix/channels.scm (read-channel-metadata): Rename to... (channel-instance-metadata): ... this. (channel-instance-dependencies): Adjust accordingly. (read-channel-metadata): New procedure. Use 'match' to require a 'version' field. Provide proper error handling when the channel sexp is malformed or when given an unsupported version number. (read-channel-metadata-from-source): Use 'catch' and 'system-error-errno' instead of 'file-exists?'. * tests/channels.scm (instance--unsupported-version): New variable. (read-channel-metadata): Rename to... (channel-instance-metadata): ... this. Rename tests accordingly. ("channel-instance-metadata rejects unsupported version"): New test. 2019-01-20inferior: 'gexp->derivation-in-inferior' honors EXP's load path.Ludovic Courtès Previously the imported modules and extensions of EXP would be missing from the load path of 'guix repl'. * guix/inferior.scm (gexp->derivation-in-inferior)[script]: New variable. [trampoline]: Write (primitive-load #$script) to PIPE. Add #$output. * tests/channels.scm ("channel-instances->manifest")[depends?]: Check for requisites rather than direct references. Adjust callers accordingly. 2019-01-20channels: Don't pull from the same channel more than once.Ludovic Courtès Previous 'channel-instance->manifest' would call 'latest-channel-derivation', which could trigger another round of 'latest-repository-commit' for no good reason. * guix/channels.scm (resolve-dependencies): New procedure. (channel-instance-derivations)[edges]: New variable. [instance->derivation]: New procedure. * tests/channels.scm (make-instance): Use 'checkout->channel-instance' instead of 'channel-instance'. ("channel-instances->manifest"): New test. 2018-12-09guix: Add support for channel dependencies.Ricardo Wurmus * guix/channels.scm (<channel-metadata>): New record. (read-channel-metadata, channel-instance-dependencies): New procedures. (latest-channel-instances): Include channel dependencies; add optional argument PREVIOUS-CHANNELS. (channel-instance-derivations): Build derivation for additional channels and add it as dependency to the channel instance derivation. * doc/guix.texi (Channels): Add subsection "Declaring Channel Dependencies". * tests/channels.scm: New file. * Makefile.am (SCM_TESTS): Add it.