aboutsummaryrefslogtreecommitdiff
path: root/po/doc
ModeNameSize
-rw-r--r--guix-cookbook.de.po275042logplainabout
-rw-r--r--guix-cookbook.fa.po158286logplainabout
-rw-r--r--guix-cookbook.fr.po268812logplainabout
-rw-r--r--guix-cookbook.ko.po170028logplainabout
-rw-r--r--guix-cookbook.zh_Hans.po159178logplainabout
-rw-r--r--guix-manual.de.po3543726logplainabout
-rw-r--r--guix-manual.es.po3444679logplainabout
-rw-r--r--guix-manual.fa.po2042121logplainabout
-rw-r--r--guix-manual.fr.po3485407logplainabout
-rw-r--r--guix-manual.it.po2042212logplainabout
-rw-r--r--guix-manual.ko.po2059900logplainabout
-rw-r--r--guix-manual.pt_BR.po2131147logplainabout
-rw-r--r--guix-manual.ru.po2717142logplainabout
-rw-r--r--guix-manual.sk.po2045780logplainabout
-rw-r--r--guix-manual.zh_CN.po2153711logplainabout
-rw-r--r--local.mk1905logplainabout
>* guix/channels.scm (<channel-introduction>): Rename constructor to '%make-channel-introduction'. (make-channel-introduction): New procedure. * tests/channels.scm ("authenticate-channel, wrong first commit signer") ("authenticate-channel, .guix-authorizations"): Use 'make-channel-introduction' without '@@' and without third argument. * doc/guix.texi (Channels)[Channel Authentication, Specifying Channel Authorizations]: New subsections. Ludovic Courtès 2020-06-28channels: Error out when the 'guix' channel lacks an introduction....* guix/channels.scm (latest-channel-instance): Raise an error instead of warning when 'guix is unauthenticated. * tests/channels.scm ("latest-channel-instances, missing introduction for 'guix'"): New test. Ludovic Courtès 2020-06-25channels: Fix test for introductory commit signer....Until now the test would always succeed because it would return 'failed, which has truth value. The exercise 'verify-introductory-commit', we need to add a second commit beyond the introductory commit, which is what we do here. * tests/channels.scm ("authenticate-channel, wrong first commit signer"): Add a second commit and authenticate up to that one. Change 'message?' to 'message-condition?'. Ludovic Courtès 2020-06-16channels: Make 'validate-pull' call right after clone/pull....This should come before patching, authentication, etc. * guix/channels.scm (latest-channel-instance): Add #:validate-pull parameter and honor it. Return a single value: the instance. (ensure-forward-channel-update): Change 'instance' parameter to 'commit' and adjust accordingly. (latest-channel-instances): Adjust to 'latest-channel-instance' changes. * guix/scripts/pull.scm (warn-about-backward-updates): Change 'instance' parameter to 'commit' and adjust accordingly. * tests/channels.scm ("latest-channel-instances #:validate-pull"): Likewise. Ludovic Courtès 2020-06-16channels: 'latest-channel-instance' authenticates Git checkouts....Fixes <https://bugs.gnu.org/22883>. * guix/channels.scm (<channel>)[introduction]: New field. (<channel-introduction>): New record type. (%guix-channel-introduction): New variable. (%default-channels): Use it. (<channel-metadata>)[keyring-reference]: New field. (%default-keyring-reference): New variable. (read-channel-metadata, read-channel-metadata-from-source): Initialize the 'keyring-reference' field. (commit-short-id, verify-introductory-commit) (authenticate-channel): New procedures. (latest-channel-instance): Call 'authenticate-channel' when CHANNEL has an introduction. * tests/channels.scm (gpg+git-available?, commit-id-string): New procedures. ("authenticate-channel, wrong first commit signer"): ("authenticate-channel, .guix-authorizations"): New tests. * doc/guix.texi (Invoking guix pull): Mention authentication. Ludovic Courtès